generated from BattlesnakeOfficial/starter-snake-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "starter-snake-typescript",
"version": "1.0.0",
"description": "A simple Battlesnake written in TypeScript",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.js",
"test": "jest --silent",
"dev": "npx nodemon -e ts --exec \"npm run start || exit 1\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/BattlesnakeOfficial/starter-snake-typescript.git"
},
"keywords": [],
"author": "BattlesnakeOfficial",
"license": "MIT",
"homepage": "https://github.com/BattlesnakeOfficial/starter-snake-typescript#readme",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"@types/node-dijkstra": "^2.5.2",
"aws-sdk": "^2.1076.0",
"chalk": "^4.1.2",
"cors": "^2.8.5",
"cross-fetch": "^3.1.4",
"dijkstrajs": "^1.0.2",
"express": "^4.17.1",
"node-dijkstra": "^2.5.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"dotenv": "^10.0.0",
"jest": "^27.0.6",
"nodemon": "^2.0.13",
"ts-jest": "^27.0.3"
}
}