-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
36
37
38
39
40
41
42
43
44
45
46
{
"private": true,
"version": "0.0.7",
"description": "React example app",
"scripts": {
"build": "npm run clean && npm run copy && webpack",
"clean": "rimraf dist/*",
"copy": "copyfiles -f ./index.html ./src/favicon.ico ./dist && copyfiles -f ./src/lib/images/*.png ./dist/images",
"lint": "eslint ./src",
"start": "webpack-dev-server --hot --open"
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.5.0",
"copyfiles": "^1.2.0",
"css-loader": "^0.28.4",
"eslint": "^3.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^7.0.1",
"file-loader": "^0.11.1",
"open": "0.0.5",
"react-hot-loader": "^1.3.1",
"redux-devtools": "^3.4.0",
"rimraf": "^2.4.3",
"style-loader": "^0.18.1",
"url-loader": "^0.5.6",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"core-js": "^2.0.0",
"normalize.css": "^7.0.0",
"react": "^15.5.0",
"react-apollo": "^1.4.2",
"react-dom": "^15.0.0",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"redux": "^3.6.0",
"styled-components": "^1.4.6"
}
}