-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
74 lines (74 loc) · 1.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "blocker",
"version": "1.0.0",
"description": "Multiplayer online game using Phaser + WebSocket (Socket.IO)",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "",
"build": "gulp",
"build.watch": "gulp watch",
"dev": "",
"standard": "standard",
"standard.fix": "standard --fix",
"validate": "npm run standard"
},
"author": "Nathachai Thongniran",
"license": "MIT",
"standard": {
"verbose": true,
"env": "mocha",
"globals": [
"io",
"location",
"GAME",
"UTIL",
"UI",
"SOCKET",
"SOCKET_URL",
"EVENT_NAME",
"GAME_WORLD_WIDTH",
"GAME_WORLD_HEIGHT",
"WINDOW_WIDTH",
"WINDOW_HEIGHT",
"IS_DEBUG",
"Boot",
"Load",
"Play",
"Phaser"
],
"ignore": [
"bower_components/**",
"node_modules/**",
"bk*"
]
},
"dependencies": {
"express": "^4.16.2",
"object-sizeof": "^1.2.0",
"shortid": "^2.2.8",
"socket.io": "^2.0.4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browser-sync": "^2.18.13",
"browserify": "^14.5.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-clean": "^0.3.2",
"gulp-cssmin": "^0.2.0",
"gulp-imagemin": "^4.0.0",
"gulp-less": "^3.3.2",
"gulp-notify": "^3.0.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"lodash.assign": "^4.2.0",
"standard": "^10.0.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.9.0"
}
}