-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 989 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
{
"name": "app",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack-dev-server --config ./webpack.development.js --progress --inline --hot",
"postinstall": "npm run build",
"build": "NODE_ENV=production webpack --config ./webpack.production.js --progress --profile --colors",
"surge": "rm -rf dist && npm run build && cp dist/index.html dist/200.html && surge dist",
"production": "node server"
},
"engines": {
"node": "5.0.0",
"npm": "3.3.6"
},
"author": "We're in <wereinhq.com>",
"license": "ISC",
"devDependencies": {
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"compression-webpack-plugin": "^0.2.0",
"css-loader": "^0.23.1",
"elm-webpack-loader": "^2.0.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.0",
"html-webpack-plugin": "^2.7.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.12"
}
}