-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 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
47
{
"name": "project-01",
"version": "1.0.0",
"description": "seed project",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"start": "webpack-dev-server --hot --inline",
"build-prod": "NODE_ENV=production webpack"
},
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"copy-webpack-plugin": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^2.10.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.1.0",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-standard": "^1.3.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"less": "^2.6.0",
"less-loader": "^2.2.2",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-register": "^6.5.2",
"express": "^4.13.4",
"express-handlebars": "^3.0.0",
"qs": "^6.1.0",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-thunk": "^1.0.3",
"webpack": "^1.12.13",
"webpack-dev-middleware": "^1.5.1"
}
}