-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.96 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
59
{
"name": "phaser-boilerplate",
"version": "0.0.1",
"author": "GoldFire Studios, Inc. (http://goldfirestudios.com)",
"description": "Phaser.js Game Boilerplate",
"contributors": [
{
"name": "James Simpson",
"email": "[email protected]"
}
],
"private": true,
"scripts": {
"dev": "rimraf dist && run-s dev:**",
"dev:server": "cross-env NODE_ENV=development PORT=7788 node server",
"dev:phaser": "cd node_modules/phaser-ce && npm i && grunt custom --exclude=bitmaptext,retrofont,net,sound,ninja,p2,creature,video --split true",
"dev:serve": "webpack --config build/webpack.config.js --progress --hide-modules",
"build": "run-s build:**",
"build:phaser": "cd node_modules/phaser-ce && npm i && grunt custom --exclude=bitmaptext,retrofont,net,sound,ninja,p2,creature,video --split true",
"build:webpack": "rimraf dist && cross-env NODE_ENV=production webpack --config build/webpack.config.js --progress --hide-modules"
},
"dependencies": {
"phaser-ce": "2.9.3",
"phaser-webpack-loader": "1.0.2",
"winston": "2.4.0",
"howler": "2.0.7",
"stats.js": "0.17.0",
"lodash.throttle": "^4.1.1",
"core-js": "2.5.3"
},
"devDependencies": {
"eslint": "4.8.0",
"eslint-config-airbnb-base": "12.0.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-html": "3.2.2",
"eslint-plugin-jsdoc": "3.1.3",
"webpack": "3.6.0",
"html-webpack-plugin": "2.30.1",
"browser-sync": "2.19.0",
"browser-sync-webpack-plugin": "1.2.0",
"buble": "0.16.0",
"buble-loader": "0.4.1",
"file-loader": "1.1.6",
"url-loader": "0.6.2",
"expose-loader": "0.7.4",
"extract-text-webpack-plugin": "3.0.1",
"css-loader": "0.28.7",
"postcss-loader": "2.0.9",
"postcss-css-variables": "0.8.0",
"postcss-import": "11.0.0",
"autoprefixer": "7.1.4",
"cross-env": "5.1.1",
"rimraf": "2.6.2",
"npm-run-all": "4.1.2"
},
"engines": {
"node": ">=6.0.0"
}
}