-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1016 Bytes
/
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
{
"name": "tectonic-bot",
"version": "1.2.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/main.js",
"scripts": {
"build": "tsc --incremental",
"docker": "docker compose up --build app"
},
"dependencies": {
"@discordx/importer": "^1.1.10",
"@discordx/pagination": "^3.2.0",
"@discordx/utilities": "^5.1.0",
"@prisma/client": "^4.15.0",
"@types/node-cron": "^3.0.7",
"@wise-old-man/utils": "^2.1.1",
"discord.js": "^14.7.1",
"discordx": "^11.5.2",
"dotenv": "^16.0.1",
"node-cron": "^3.0.2",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@types/node": "^18.7.18",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"prisma": "^4.13.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}