-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "2021-ai-agent-server",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.js",
"scripts": {
"bots:local": "npm run build && node scripts/bots.js | pino-pretty -t",
"bots:openshift": "node scripts/bots.js",
"build": "tsc",
"dev": "NODE_ENV=dev LOG_LEVEL=trace GAME_SERVER_URL=ws://summit-frontend-wss:3000/game nodemon -e ts -x ts-node src/index.ts | pino-pretty -t",
"start": "node build/index.js",
"test": "ts-node node_modules/tape/bin/tape test/*.ts"
},
"keywords": [],
"author": "Evan Shortiss",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern \"**/*.ts\""
}
},
"prettier": {
"trailingComma": "none",
"singleQuote": true
},
"devDependencies": {
"@types/humanize-duration": "~3.18.1",
"@types/node": "~14.14.25",
"@types/pino": "~6.3.5",
"@types/tape": "~4.13.0",
"@types/ws": "~7.4.0",
"husky": "~4.3.8",
"nodemon": "~2.0.7",
"pino-pretty": "^4.5.0",
"prettier": "~2.2.1",
"pretty-quick": "~3.1.0",
"ts-node": "~9.1.1",
"typescript": "~4.1.3"
},
"dependencies": {
"@evanshortiss/tstate-machine": "^2.0.1",
"env-var": "~7.0.0",
"fastify": "~3.11.0",
"fastify-plugin": "~3.0.0",
"got": "^11.8.1",
"humanize-duration": "~3.25.1",
"make-promises-safe": "^5.1.0",
"pino": "~6.11.0",
"reflect-metadata": "~0.1.13",
"tape": "~5.1.1",
"ws": "~7.4.3"
}
}