-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·36 lines (36 loc) · 981 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
35
36
{
"name": "arpg",
"version": "0.1.0",
"description": "haxe-dev-server",
"main": "main.js",
"bin": {
"arpg": "main.dist.js"
},
"scripts": {
"start": "DEBUG=watcher.* node compile-and-watch.js --compileFile=build.hxml",
"productionBuild": "DEBUG=watcher.* node compile-and-watch.js --env=production --compileFile=build.hxml",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leland-Kwong/autonomous-game.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Leland-Kwong/autonomous-game/issues"
},
"homepage": "https://github.com/Leland-Kwong/autonomous-game#readme",
"dependencies": {
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chokidar": "^3.4.0",
"cors": "^2.8.5",
"debug": "^4.1.1",
"minimist": "^1.2.5"
}
}