-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
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
{
"name": "snake",
"private": true,
"version": "0.0.0",
"dependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"react-transition-group": "^2.5.3",
"redux": "^4.0.1"
},
"devDependencies": {
"@types/react": "^16.7.21",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^7.0.1",
"@types/react-transition-group": "^2.0.15",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"normalize.css": "^8.0.1",
"prettier": "^1.16.1",
"ts-loader": "^5.3.3",
"typescript": "^3.2.4",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"scripts": {
"build": "webpack --config webpack.conf.js",
"build:production": "webpack --config webpack.production.conf.js",
"fmt:check": "yarn run prettier --check '**/*.js' '**/*.jsx' '!dist/**'",
"fmt:write": "yarn run prettier --write '**/*.js' '**/*.jsx' '!dist/**'",
"watch": "webpack --watch --config webpack.conf.js"
},
"author": "William Bain <bain.william.a@gmail.com>",
"license": "MIT"
}