generated from BattlesnakeOfficial/starter-snake-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 913 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 913 Bytes
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
{
"name": "shai",
"version": "2.0.0",
"description": "A maybe more than simple Battlesnake written in TypeScript",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node build/index.js",
"test": "jest --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nosnaws/shai-hulud.git"
},
"keywords": [],
"author": "nosnaws",
"license": "MIT",
"dependencies": {
"@newrelic/winston-enricher": "^2.1.0",
"@types/express": "^4.17.13",
"@types/newrelic": "^7.0.3",
"@types/node": "^16.3.3",
"@types/uuid": "^8.3.4",
"express": "^4.17.1",
"newrelic": "^8.7.1",
"pm2": "^5.1.2",
"typescript": "^4.3.5",
"uuid": "^8.3.2",
"winston": "^3.6.0",
"winston-to-newrelic-logs": "^1.0.11"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"jest": "^27.0.6",
"ts-jest": "^27.0.3"
}
}