-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "gxrbot-ts",
"version": "1.0.0",
"description": "gxrBot but rewritten in typescript",
"main": "src/bot.ts",
"dependencies": {
"@types/string-similarity": "^4.0.0",
"csvtojson": "^2.0.10",
"discord-api-types": "^0.31.0",
"discord.js": "^14.6.0",
"dotenv": "^16.0.3",
"emoji-dictionary": "^1.0.11",
"express": "^4.18.2",
"firebase-admin": "^10.0.2",
"node": "^17.7.2",
"node-cache": "^5.1.2",
"node-cron": "^3.0.0",
"node-graceful-shutdown": "^1.1.2",
"pretty-ms": "^7.0.1",
"undici": "^5.14.0"
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/node-cron": "^3.0.1",
"onchange": "^7.1.0",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.6.3"
},
"scripts": {
"build": "tsc",
"start": "node dist/bot.js",
"dev": "ts-node-dev src/bot.ts",
"start-ts": "npx ts-node src/bot.ts",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"postinstall": "npm run build"
}
}