-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·36 lines (36 loc) · 1.15 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
{
"name": "artillery-p2p",
"version": "0.1",
"description": "Artillery game with focus on P2P networked play",
"author": {
"name": "[email protected]",
"url": "http://jsyang.ca/artillery-p2p"
},
"repository": {
"type": "git",
"url": "git://github.com/jsyang/artillery-p2p.git"
},
"main": "artillery.js",
"scripts": {
"ts-watch": "tsc --noEmit -w -p .",
"regen-env": "node scripts/generateDotEnv.js",
"watch": "yarn regen-sounds; yarn regen-env ; parcel _dev.html --port 3000 --no-hmr --no-source-maps",
"regen-js": "rm -rf .cache ; yarn regen-sounds; yarn regen-env ; parcel build _dev.html --out-dir . ; yarn cleanup",
"cleanup": "git checkout _dev.html ; mv src.*.js artillery.js ; rm *.map *.ogg",
"regen-sounds": "node scripts/generateSoundsList.js",
"build": "yarn regen-js"
},
"devDependencies": {
"@types/pixi.js": "^4.6.0",
"@types/sat": "^0.0.30",
"fast-memoize": "^2.5.1",
"fscreen": "^1.0.2",
"p2p.system": "^1.0.0",
"parcel-bundler": "^1.10.3",
"peer": "^0.2.10",
"peerjs": "^0.3.18",
"pixi.js": "^4.8.2",
"sat": "^0.6.0",
"typescript": "^3.2.1"
}
}