-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "game-of-life",
"version": "1.0.0",
"description": "Conway's Game of Life - cellular automata",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel dev:*",
"build": "npm-run-all clean:* prod:*",
"clean:webpack": "rimraf dist",
"dev:webpack": "webpack serve --config webpack.development.js",
"prod:webpack": "webpack --config webpack.production.js"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com/Mofunkles/game-of-life.git"
},
"author": "Mofunkles",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mofunkles/game-of-life/issues"
},
"homepage": "https://github.com/Mofunkles/game-of-life#readme",
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.9",
"@netlify/plugin-sitemap": "^0.7.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.1",
"html-webpack-plugin": "^5.2.0",
"mini-css-extract-plugin": "^1.3.9",
"npm-run-all": "^4.1.5",
"postcss-loader": "^5.1.0",
"postcss-preset-env": "^6.7.0",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack": "^5.24.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
}
}