-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.09 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.09 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
{
"name": "medialane-backend",
"version": "0.1.1",
"description": "Medialane off-chain service layer for Starknet",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"postinstall": "bunx prisma generate",
"db:migrate": "bunx prisma migrate dev",
"db:generate": "bunx prisma generate",
"db:push": "bunx prisma db push",
"db:studio": "bunx prisma studio",
"backfill": "bun run scripts/backfill.ts",
"backfill:tokens": "bun run scripts/backfillTokens.ts",
"reset-cursor": "bun run scripts/resetCursor.ts"
},
"dependencies": {
"@clerk/backend": "^3.2.0",
"@hono/node-server": "^1.13.7",
"@hono/zod-validator": "^0.7.6",
"@prisma/client": "^5.22.0",
"hono": "^4.6.0",
"ioredis": "^5.3.2",
"nodemailer": "^8.0.3",
"pinata": "^2.0.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"starknet": "^6.11.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/nodemailer": "^7.0.11",
"prisma": "^5.22.0",
"typescript": "^5.6.0"
}
}