-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 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
{
"name": "jpyc-viewer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "pnpm --filter @jpyc/sdk-react compile && pnpm --filter @jpyc/sdk-core compile && pnpm install && prisma generate && next build --turbopack",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"db:reset": "prisma migrate reset"
},
"dependencies": {
"@jpyc/sdk-core": "file:external/jpyc-sdk/packages/core",
"@jpyc/sdk-react": "file:external/jpyc-sdk/packages/react",
"@prisma/client": "^6.19.0",
"@rainbow-me/rainbowkit": "^2.2.9",
"@tanstack/react-query": "^5.90.5",
"babel-plugin-react-compiler": "^1.0.0",
"date-fns": "^4.1.0",
"next": "15.5.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"soltypes": "^2.0.0",
"viem": "^2.38.3",
"wagmi": "^2.18.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"prisma": "^6.19.0",
"tailwindcss": "^4",
"typescript": "^5"
}
}