-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.17 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
{
"name": "space",
"version": "1.0.0",
"description": "Star Pilot Blues",
"main": "",
"scripts": {
"start": "node dist/start.js",
"build": "tsc && npm run build-frontend && npm run build-engine-loader && npm run build-assets",
"build-debug": "tsc && npm run build-frontend-debug && npm run build-engine-loader-debug && npm run build-assets",
"build-frontend": "browserify dist/client/frontend.js | terser --compress --mangle > dist/client/dist_frontend.js",
"build-engine-loader": "browserify dist/client/engine_loader.js | terser --compress --mangle > dist/client/dist_engine_loader.js",
"build-frontend-debug": "browserify dist/client/frontend.js > dist/client/dist_frontend.js",
"build-engine-loader-debug": "browserify dist/client/engine_loader.js > dist/client/dist_engine_loader.js",
"build-assets": "npm run build-html && npm run build-img && npm run build-css && npm run build-sfx && npm run build-ico",
"build-html": "cp src/client/*.html dist/client/",
"build-img": "cp -r src/client/img dist/client/",
"build-css": "cp src/client/frontend/*.css dist/client/frontend/",
"build-sfx": "cp -r src/client/sfx dist/client",
"build-ico": "cp src/client/favicon.ico dist/client/favicon.ico"
},
"keywords": [
"space",
"cowboy",
"bebop",
"online",
"game"
],
"author": "Spark Cruz <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@types/express": "^4.17.7",
"@types/socket.io": "^1.4.41",
"@types/socket.io-client": "^1.4.33",
"browserify": "^14.5.0",
"terser": "^5.3.2",
"typescript": "^4.2.3"
},
"dependencies": {
"@types/jsonfile": "^5.0.1",
"collisions": "file:lib/collisions",
"express": "^4.16.3",
"fast-json-stringify": "^1.21.0",
"flatstr": "^1.0.12",
"jsonfile": "^4.0.0",
"long": "^4.0.0",
"pixi-virtual-joystick": "^0.4.1",
"pixi.js": "^5.3.2",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"uglify-es": "^3.3.9",
"vue": "^2.6.12"
}
}