-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
{
"name": "base-discordx",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"build:changelog": "npx @discordx/changelog --src src",
"dev": "tsx src/index.ts",
"start": "node build/index.js",
"watch": "nodemon --exec ts-node-esm src/index.ts"
},
"dependencies": {
"@discordx/importer": "^1.2.3",
"@discordx/utilities": "^5.2.1",
"@t3-oss/env-core": "^0.6.1",
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"discord.js": "^14.13.0",
"discordx": "^11.7.6",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"http-status-codes": "^2.3.0",
"morgan": "^1.10.0",
"winston": "^3.10.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/compression": "^1.7.3",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/morgan": "^1.9.6",
"@types/node": "^20.5.9",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsx": "^3.13.0",
"typescript": "5.2.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}