-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "webpack-babel-phaser",
"version": "1.0.0",
"description": "A phaser template written in ES2015 with Babel and Webpack.",
"author": "Paul McMonagle <[email protected]> (http://github.com/pmcmonagle)",
"license": "MIT",
"main": "src/main.js",
"keywords": [
"phaser",
"babel",
"webpack"
],
"scripts": {
"preclean": "mkdirp dist",
"clean": "rimraf dist/*",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix src",
"build": "webpack -p",
"prebuild": "npm run clean && npm run lint",
"start": "webpack-dev-server --port 8001 --inline --hot --progress --open"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.2.3",
"eslint": "^4.12.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-prettier": "^2.3.1",
"expose-loader": "^0.7.4",
"html-webpack-plugin": "^2.30.1",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"prettier": "^1.8.2",
"rimraf": "^2.5.0",
"webpack": "^3.9.0",
"webpack-dev-server": "^2.9.5"
},
"dependencies": {
"phaser-ce": "^2.9.2",
"phaser-tilemap-plus": "^0.10.1",
"rot-js": "^0.6.5"
}
}