-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
49 lines (49 loc) · 1.63 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
{
"name": "game-off-2017",
"version": "0.1.0",
"description": "Team Kickpunch's rocking entry",
"repository": {
"type": "git",
"url": "https://github.com/petarov/game-off-2017.git"
},
"contributors": [
"Alexey Vishnyakov <[email protected]> (github.com/n3tn0de)",
"Carlos Braga <[email protected]> (github.com/charliiee)",
"Pavel Antonov <[email protected]> (github.com/PsyBack)",
"Petar Petrov <[email protected]> (github.com/petarov)",
"Will Tonna <[email protected]> (github.com/lampeight)"
],
"license": "MIT",
"private": true,
"scripts": {
"start": "NODE_ENV=development webpack-dev-server",
"dash": "NODE_ENV=development webpack-dashboard -- webpack-dev-server",
"build": "NODE_ENV=production webpack",
"lint": "eslint . --quiet --format 'node_modules/eslint-friendly-formatter'",
"fix-lint": "eslint . --fix --format 'node_modules/eslint-friendly-formatter'",
"clean": "rm -rf dist"
},
"dependencies": {
"phaser-ce": "^2.9.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "4.10.0",
"eslint-friendly-formatter": "3.0.0",
"eslint-plugin-import": "2.8.0",
"expose-loader": "^0.7.3",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"imports-loader": "^0.7.1",
"url-loader": "^0.6.2",
"webpack": "^3.8.1",
"webpack-dashboard": "^1.0.0",
"webpack-dev-server": "^2.9.4"
}
}