-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 979 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
34
{
"name": "SlitherPhaser",
"version": "1.0.0",
"description": "",
"author": "Jernej <j@eee.si>",
"main": "server.js",
"scripts": {
"dev": "webpack",
"deploy": "webpack --config webpack.production.config.js",
"start": "node server",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --config ./webpack.production.config.js --progress --profile --colors",
"test": "standard"
},
"license": "ISC",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.3",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.5.0",
"expose-loader": "^0.7.1",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.6.1",
"standard": "^7.0.1",
"webfontloader": "^1.6.21",
"webpack": "^1.12.13",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.2.0"
},
"dependencies": {
"phaser": "^2.4.7"
}
}