-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
44
45
{
"name": "bladebot",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "npx ts-node src/index.ts",
"prod": "STATE=\"prod\" npx ts-node src/index.ts",
"build": "esbuild \"src/**/*\" --outdir=dist --platform=node --target=node14 --format=cjs",
"pretty": "prettier --write .",
"test": "npx tsc --noEmit",
"db-push": "prisma db push",
"db-seed": "prisma db seed",
"db-gen": "prisma generate",
"update-deps": "npm-check-updates -u && npm i"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@napi-rs/canvas": "^0.1.71",
"@prisma/client": "^6.10.1",
"axios": "^1.10.0",
"chart.js": "^4.5.0",
"chartjs-node-canvas": "^5.0.0",
"discord.js": "^14.20.0",
"dotenv": "^16.5.0",
"easy-table": "^1.2.0",
"moment-timezone": "^0.6.0",
"pg": "^8.16.1",
"prettier": "^3.5.3",
"unidecode": "^1.1.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@types/unidecode": "^1.1.0",
"esbuild": "^0.25.5",
"npm-check-updates": "^18.0.1",
"prisma": "^6.10.1",
"typescript": "^5.8.3"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}