-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 892 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 892 Bytes
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
{
"name": "jack-puzzle",
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.1"
},
"devDependencies": {
"babel-core": "6.25.0",
"babel-loader": "7.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "6.23.0",
"css-loader": "0.28.4",
"file-loader": "0.11.2",
"rimraf": "^2.6.1",
"style-loader": "0.18.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"webpack": "2.6.1",
"webpack-dev-server": "2.5.0"
},
"scripts": {
"deploy": "npm run build && ./deploy.sh",
"build": "webpack -p",
"start": "webpack-dev-server --hot --inline"
},
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
},
"repository": {
"url": "git@github.com:scars377/jack-puzzle.git"
}
}