-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 KB
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
{
"name": "lil-vroom-vrooms",
"version": "0.0.1",
"description": "Local multiplayer racing game",
"repository": {
"type": "git",
"url": "git+https://github.com/zpchavez/lvv.git"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "1.9.1",
"copy-webpack-plugin": "^4.0.0",
"del": "1.1.1",
"express": "^4.14.0",
"express-http-proxy": "^0.10.1",
"glob": "4.0.5",
"html-webpack-plugin": "^2.24.1",
"mocha": "3.2.0",
"phaser-debug": "1.1.6",
"proxyquireify": "1.2.2",
"react-tools": "0.12.2",
"reactify": "1.0.0",
"sinon": "1.10.3",
"sinon-chai": "2.5.0",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-error-notification": "^0.1.6",
"webpack-hot-middleware": "^2.13.1"
},
"dependencies": {
"phaser": "2.5.0",
"phaser-tiled": "^2.0.2",
"query-string": "1.0.0",
"random-seed": "0.2.0",
"react": "0.12.2",
"underscore": "1.8.2"
},
"browser": {
"phaser": "./shims/phaser.js"
},
"browserify-shim": {
"phaser": "Phaser"
},
"scripts": {
"start": "node dev-server.js",
"test": "mocha ./__tests__",
"build": "rm -rf ./build; APP_ENV=production ./node_modules/.bin/webpack"
}
}