-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 918 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": "cga-jam",
"version": "1.0.0",
"description": "Game for the CGA Game Jam",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/oliverbenns/cga-jam.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverbenns/cga-jam/issues"
},
"homepage": "https://github.com/oliverbenns/cga-jam#readme",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"expose-loader": "^0.7.3",
"webpack": "^2.5.0",
"webpack-dev-server": "^2.4.5"
},
"scripts": {
"develop": "webpack-dev-server --hot --inline",
"build": "NODE_ENV=production webpack",
"deploy": "NODE_ENV=production webpack && chmod +x ./deploy.sh && ./deploy.sh"
},
"dependencies": {
"lodash": "^4.17.4",
"phaser": "^2.6.2"
}
}