-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "deResearcher-backend",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:format": "prisma format",
"build": "tsc && tsc-alias",
"start": "node ./dist/index.js"
},
"dependencies": {
"@hono/node-server": "^1.13.4",
"@prisma/client": "^5.21.1",
"@solana/web3.js": "^1.95.3",
"bs58": "^6.0.0",
"crypto-js": "^4.2.0",
"hono": "^4.6.3",
"hono-pino": "^0.4.0",
"merkletreejs": "^0.4.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"tweetnacl": "^1.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@metaplex-foundation/beet": "^0.7.2",
"@metaplex-foundation/beet-solana": "^0.4.1",
"@types/bun": "latest",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.8.6",
"prisma": "^5.20.0",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"prisma": {
"schema": "./src/db/prisma/schema"
}
}