-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
{
"name": "test-bot-x",
"type": "module",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "tsc --noEmit && tsup --clean",
"watch": "tsup --watch",
"start": "TZ=UTC node dist/index.js",
"dev": "NODE_ENV=development tsup --watch",
"generate": "drizzle-kit generate:pg",
"migrate": "tsup --clean migrate.ts && node dist/migrate.js"
},
"dependencies": {
"@discordx/importer": "^1.2.2",
"@discordx/pagination": "^3.4.1",
"@discordx/utilities": "^5.2.1",
"colorette": "^2.0.20",
"discord.js": "^14.11.0",
"discordx": "^11.7.6",
"dotenv": "^16.3.1",
"drizzle-orm": "^0.27.2",
"pg": "^8.11.1",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^20.3.2",
"@types/pg": "^8.10.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"drizzle-kit": "^0.19.10",
"eslint": "^8.43.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"globby": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"tsup": "^7.1.0",
"typescript": "5.1.6"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8.0.0"
}
}