-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.15 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
{
"name": "game",
"version": "1.0.0",
"description": "A game",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=production node server.js",
"postinstall": "npm run build:prod",
"build:dev": "rimraf public && webpack --colors --config webpack.dev.config.js && cp src/index.html public/index.html",
"build:prod": "set NODE_ENV=production && rimraf public && webpack --colors --config webpack.prod.config.js && cp src/index.html public/index.html",
"dev": "PORT=5000 node server.js"
},
"author": "Eirik Lillebo",
"license": "ISC",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"css-loader": "^0.28.7",
"express": "^4.16.1",
"file-loader": "^1.1.5",
"handlebars": "^4.0.10",
"handlebars-loader": "^1.6.0",
"node-sass": "^4.5.3",
"pngjs2": "^2.0.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"webpack": "^3.6.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-hot-middleware": "^2.19.1"
}
}