-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "game-of-life",
"private": true,
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"docs": "esdoc",
"getpatterns": "babel-node --presets node8 --ignore \"node_modules/(?!lodash-es)\" getpatterns.js"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-regular-svg-icons": "^5.8.1",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/react-fontawesome": "^0.1.4",
"lodash-es": "^4.17.11",
"prop-types": "^15.7.2",
"react": "^16.8.5",
"react-dom": "^16.8.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-node8": "^1.2.0",
"babel-preset-react": "^6.24.1",
"esdoc": "^1.1.0",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-jsx-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"node-stream-zip": "^1.8.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}