-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.55 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
{
"name": "paris-react-webpack",
"version": "0.0.1",
"description": "Sample App built with React and Webpack",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/theasta/paris-webpack-react.git"
},
"author": "Alexandrine Boissière",
"license": "ISC",
"dependencies": {
"es6-promise": "2.0.1",
"express": "4.11.2",
"flux": "2.0.1",
"jade": "1.9.2",
"lodash": "2.4.1",
"object-assign": "2.0.0",
"react": "0.12.2",
"react-bootstrap": "0.15.1",
"react-d3": "0.2.1",
"react-router": "0.12.0",
"react-router-bootstrap": "0.9.1"
},
"devDependencies": {
"css-loader": "0.9.1",
"file-loader": "0.8.1",
"html-loader": "0.2.3",
"jsx-loader": "0.12.2",
"react-hot-loader": "1.1.1",
"react-router-proxy-loader": "0.2.0",
"style-loader": "0.8.3",
"url-loader": "0.5.5",
"webpack": "1.5.3",
"webpack-configuration": "0.0.2",
"webpack-dev-server": "1.7.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf stats.json && rm -rf server/cloud && rm -rf server/dist && rm -rf server/assets.json",
"webpack-dev-server": "webpack-dev-server --config webpack-dev-server.config.js --colors --port 2992 --hot --inline",
"webpack-dev": "webpack --config webpack-dev.config.js --colors --hide-modules --watch",
"build": "webpack --config webpack-build.config.js --colors && node server/server-cdn.js",
"webpack-stats": "webpack --config webpack-dev.config.js --colors --progress --json > stats.json"
}
}