-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.16 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.16 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": "jamsrpay-nexjs-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma db studio"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@jamsr-ui/next": "^0.1.0",
"@jamsr-ui/react": "0.1.0",
"@prisma/client": "6.3.1",
"@tailwindcss/postcss": "^4.0.1",
"next": "15.1.6",
"postcss": "^8.5.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"tailwindcss": "^4.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"prisma": "^6.3.1",
"typescript": "^5"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma",
"sharp"
],
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma",
"sharp"
]
}
}