-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 919 Bytes
/
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
{
"name": "game-of-life-react",
"version": "1.0.0",
"description": "Game of Life in ReactJS",
"repository": {},
"main": "gol.react.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:dev": "webpack-dev-server --inline --content-base .",
"start:prod": "webpack --mode production --optimize-minimize"
},
"author": "Zhang Yu",
"license": "MIT",
"dependencies": {
"if-env": "^1.0.4",
"lodash": "^4.17.14",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"webpack": "^4.35.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}