forked from BrodyHolden/battlesnake-node-snakenado
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.97 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
{
"name": "battlesnake-project-z",
"description": "Project Z BattleSnake AI",
"version": "0.0.0",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"crc-32": "^1.2.0",
"cross-env": "^5.2.1",
"express": "^4.17.1",
"morgan": "^1.10.0",
"pathfinding": "git+https://github.com/paulrobello/PathFinding.js.git#3840d6e60b88a71c38ee5c356542b4a5883f3444",
"source-map-support": "^0.5.19",
"websocket": "^1.0.32"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@types/angular": "^1.7.2",
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.21",
"@types/color": "^3.0.1",
"@types/express": "^4.17.8",
"@types/jquery": "^3.5.1",
"@types/node": "^11.15.21",
"@types/websocket": "^1.0.1",
"axios": "^0.20.0",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"cheerio": "^1.0.0-rc.3",
"color": "^3.1.2",
"concurrently": "^5.3.0",
"forever": "^0.15.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"gulplog": "^1.0.0",
"nodemon": "^1.19.4",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typescript": "^3.9.7",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"main": "index.js",
"engines": {
"node": ">=8.x"
},
"scripts": {
"nodemon": "nodemon --delay 500ms --watch dist dist/server/index.js",
"server": "forever start dist/server/index.js",
"start": "concurrently --names \"NODEMON,GULP,ENGINE\" \"npm run nodemon\" \"gulp watch\" \"php engine.php\""
},
"nodemonConfig": {
"ignore": [
"games/*",
"docs/*"
]
}
}