-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "game-of-life",
"version": "2.0.5",
"description": "This is a cellular automaton that implements John Horton Conway's Game of Life. Contains a library of figures and tools.",
"keywords": [
"game-of-life",
"conway's game of life",
"cellular automaton",
"game"
],
"license": "GNU GPL v3",
"author": {
"name": "Eugene Serb",
"email": "eugene.serb@gmail.com",
"url": "https://eugene-serb.github.io/"
},
"homepage": "https://eugene-serb.github.io/game-of-life/",
"repository": {
"type": "git",
"url": "git+https://github.com/eugene-serb/game-of-life.git"
},
"bugs": {
"url": "https://github.com/eugene-serb/game-of-life/issues"
},
"private": true,
"main": "index.js",
"scripts": {
"start": "webpack --mode development --watch",
"dev": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "npx prettier --check .",
"format:fix": "npx prettier --write --ignore-unknown .",
"test": "jest tests"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.11.0",
"eslint": "^8.57.1",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-webpack-plugin": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"style-loader": "^3.3.4",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
}
}