-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·58 lines (58 loc) · 2.12 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "kaoru",
"version": "0.1.0",
"description": "Anime card collecting Discord bot",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx scripts/migrate.ts",
"db:backup": "tsx scripts/backup-database.ts",
"db:repair:cards-rpg": "tsx scripts/repair-cards-rpg-columns.ts",
"db:repair:users": "tsx scripts/repair-users-columns.ts",
"db:repair:bounties": "tsx scripts/repair-bounties-table.ts",
"db:repair:auctions": "tsx scripts/repair-auctions-table.ts",
"db:repair:petals": "tsx scripts/repair-petal-transactions-table.ts",
"db:repair:fusion-pile": "tsx scripts/repair-fusion-pile-table.ts",
"db:seed": "tsx scripts/seed-characters.ts",
"db:studio": "drizzle-kit studio",
"editions:generate": "tsx scripts/generate-editions.ts",
"editions:prune": "tsx scripts/prune-non-official-editions.ts",
"curation:queue-depleted": "tsx scripts/queue-depleted-curation.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:pure": "vitest run tests/parse.test.ts tests/weights.test.ts",
"test:trade": "vitest run tests/trade.test.ts",
"test:economy": "vitest run tests/economy.test.ts",
"test:bounty": "vitest run tests/bounty.test.ts",
"test:mail": "vitest run tests/mail.test.ts",
"test:summon": "vitest run tests/summon.test.ts",
"web:dev": "cd web && npm run dev",
"web:build": "cd web && npm run build",
"seed:admin": "tsx scripts/seed-admin.ts",
"sync:admin-discord": "tsx scripts/sync-admin-from-discord.ts"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.65",
"axios": "^1.7.9",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.36.4",
"graphql-request": "^7.1.2",
"ioredis": "^5.4.2",
"nanoid": "^5.0.9",
"postgres": "^3.4.5",
"sharp": "^0.33.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"drizzle-kit": "^0.30.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.1"
}
}