-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "react-webpack-boilerplate",
"version": "0.0.1",
"description": "React project boilerplate with webpack and ES6",
"main": "index.js",
"scripts": {
"dev": "node server",
"clean": "rimraf dist",
"deploy": "npm run clean && NODE_ENV=production webpack -p --progress --config webpack.production.config.js",
"wdeploy": "npm run clean&&set NODE_ENV=production&&webpack -p --progress --config webpack.production.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Rhadow/react-webpack-boilerplate.git"
},
"keywords": [
"webpack",
"boiler",
"plate"
],
"author": "Rhadow",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rhadow/react-webpack-boilerplate/issues"
},
"homepage": "https://github.com/Rhadow/react-webpack-boilerplate",
"devDependencies": {
"babel-core": "^5.4.7",
"babel-loader": "^5.1.3",
"css-loader": "^0.14.2",
"eslint": "^0.22.1",
"eslint-loader": "^0.12.0",
"eslint-plugin-react": "^2.5.0",
"express": "^4.12.4",
"extract-text-webpack-plugin": "^0.8.1",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.4.0",
"http-proxy": "^1.11.1",
"node-libs-browser": "^0.5.2",
"opn": "^1.0.2",
"rimraf": "^2.3.4",
"sass-loader": "^1.0.2",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.9.9",
"webpack-dev-server": "^1.9.0"
},
"dependencies": {
"bootstrap": "^3.3.4",
"jquery": "^2.1.4",
"react": "^0.13.3"
},
"vendors": [
"react",
"jquery",
"bootstrap"
]
}