-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.56 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"scripts": {
"start": "NODE_OPTIONS=--max-old-space-size=4096 ts-node src/index.ts",
"dev": "ts-node-dev -r tsconfig-paths/register src/index.ts",
"test": "jest",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts .",
"prepare": "husky install",
"generate:types": "node ./scripts/generate-types.js"
},
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@types/cron": "^2.0.0",
"@types/jest": "^27.0.2",
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa-router": "^7.4.2",
"@types/koa__cors": "^3.0.2",
"@types/lodash.chunk": "^4.2.7",
"@types/node-fetch": "2.5.12",
"@types/pg": "^8.6.1",
"@types/pino": "^6.3.6",
"@types/sharp": "^0.30.4",
"@types/twit": "^2.2.30",
"@types/twitter": "^1.7.1",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"game-interface": "^1.0.1",
"human-id": "^4.0.0",
"husky": ">=6",
"jest": "^27.3.1",
"lint-staged": ">=10",
"prettier": "^2.6.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.4.3"
},
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.5.0",
"@koa/cors": "^3.1.0",
"canvas": "^2.9.0",
"casing": "^1.1.0",
"change-case": "^4.1.2",
"chart.js": "^3.7.1",
"chartjs-node-canvas": "^4.1.6",
"cron": "^2.0.0",
"dayjs": "^1.10.7",
"deepmerge": "^4.2.2",
"discord-api-types": "^0.36.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"ethers": "^5.4.7",
"firebase-admin": "^11.0.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.1",
"koa-router": "^10.0.0",
"lint": "^0.7.0",
"lodash.chunk": "^4.2.0",
"nanoid": "^3.1.29",
"node-cache": "^5.1.2",
"node-fetch": "2.6.2",
"pg": "^8.7.1",
"pino": "^6.11.2",
"pino-pretty": "^4.7.1",
"pod-room-engine-demo": "^1.0.0",
"query-string": "^7.1.1",
"sharp": "^0.30.7",
"swagger-typescript-api": "^10.0.1",
"telegraf": "^4.9.2",
"triple-pod-game-engine": "^6.0.1",
"ts-case-convert": "^2.0.2",
"twitter-api-sdk": "^1.1.0",
"type-fest": "^2.19.0",
"uuid": "^8.3.2",
"web3": "^1.6.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,md}": "prettier --write"
},
"resolutions": {
"typescript": "4.7.4"
}
}