-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
43
{
"name": "codify-bot",
"version": "1.0.0",
"description": "The new Official Codify Bot Discord",
"main": "src/index.ts",
"scripts": {
"start": "node dist/index.js",
"start:dev": "tsx --watch src/index.ts",
"build": "tsup src --out-dir dist",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"db:gui": "pnpm dlx prisma studio",
"db:apply": "pnpm dlx prisma migrate deploy"
},
"keywords": [],
"author": "Dev Curumin",
"license": "ISC",
"dependencies": {
"@prisma/adapter-pg": "6.7.0",
"@prisma/client": "6.7.0",
"chalk": "4.1.2",
"discord.js": "14.19.3",
"dotenv": "16.5.0",
"prisma": "6.7.0",
"zod": "3.24.4"
},
"devDependencies": {
"@eslint/js": "9.26.0",
"@types/node": "22.15.15",
"eslint": "9.26.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.4.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "16.1.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsup": "8.4.0",
"tsx": "4.19.4",
"typescript": "5.8.3",
"typescript-eslint": "8.32.0"
}
}