-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 945 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
32
33
34
35
36
{
"name": "pwa-learn",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.3.3",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.0",
"gitignore": "^0.6.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"standard": "^10.0.1",
"standard-loader": "^6.0.1",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"webpack-dashboard": "^0.3.0",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"extract-text-webpack-plugin": "^2.1.0",
"normalize.css": "^6.0.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1"
},
"scripts": {
"start": "webpack-dashboard -- webpack-dev-server",
"test": "jest",
"build": "webpack"
}
}