-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"name": "trex-discordbot",
"private": true,
"version": "2.0.0",
"description": "Discord admin bot",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=18.x"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc && cp -r src/views dist/views",
"register": "node dist/deployCommands.js",
"postinstall": "npm run build"
},
"author": "Pedro P. Rodrigues",
"license": "MIT",
"dependencies": {
"canvas": "^3.1.0",
"discord-interactions": "^4.0.0",
"discord.js": "^14.19.3",
"dotenv": "^16.5.0",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"nvm": "^0.0.4",
"pg": "^8.16.0",
"pug": "^3.0.3"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.0.3",
"@types/node-fetch": "^2.6.12",
"@types/pg": "^8.15.4",
"@types/pug": "^2.0.10",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-esm-loader": "^1.0.1",
"typescript": "^5.9.3"
}
}