-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "starc-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "ESLINT_USE_FLAT_CONFIG=false next lint",
"db:seed": "tsx prisma/seed.ts",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"engines": {
"node": "20.x"
},
"dependencies": {
"@circle-fin/w3s-pw-web-sdk": "^1.1.11",
"@google/genai": "^1.30.0",
"@heroicons/react": "^2.2.0",
"@prisma/client": "5.22.0",
"@tanstack/react-query": "^5.90.10",
"@upstash/ratelimit": "^2.0.7",
"@upstash/redis": "^1.35.6",
"lottie-react": "^2.4.1",
"next": "16.0.3",
"qrcode.react": "^4.2.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"viem": "^2.39.3",
"wagmi": "^3.0.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"eslint": "^8",
"eslint-config-next": "^16.0.3",
"lightningcss": "^1.30.2",
"lightningcss-linux-x64-gnu": "^1.30.2",
"prisma": "5.22.0",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "^5"
}
}