-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.39 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.39 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "src",
"version": "0.1.0",
"private": true,
"zenstack": {
"schema": "./models/schema.zmodel"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"db:makemigrations": "npx zenstack generate && npx prisma migrate --config models/prisma.config.ts dev --create-only",
"db:migrate": "npx zenstack generate && npx prisma --config models/prisma.config.ts migrate deploy && npm run db:generate",
"db:reset": "npx prisma --config models/prisma.config.ts migrate reset",
"db:generate": "npx zenstack generate && npx prisma --config models/prisma.config.ts generate && npx openapi-typescript public/api/openapi.json -o src/prisma/openapits.d.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.0",
"@hookform/resolvers": "^5.2.2",
"@iconify-json/simple-icons": "^1.2.49",
"@paralleldrive/cuid2": "^3.0.4",
"@prisma/adapter-pg": "^6.17.1",
"@prisma/client": "^6.16.3",
"@prisma/extension-accelerate": "^2.0.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@uiw/react-markdown-preview": "^5.1.5",
"@uiw/react-md-editor": "^4.0.8",
"@zenstackhq/runtime": "^2.19.2",
"@zenstackhq/server": "^2.19.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"embla-carousel-autoplay": "^8.6.0",
"embla-carousel-react": "^8.6.0",
"file-type": "^21.1.1",
"lucide-react": "^0.542.0",
"next": "^16.1.0",
"next-auth": "^5.0.0-beta.29",
"next-intl": "^4.4.0",
"node-emoji": "^2.2.0",
"react": "19.1.0",
"react-day-picker": "^9.11.1",
"react-dom": "19.1.0",
"react-hook-form": "^7.66.0",
"react-markdown": "^10.1.0",
"rehype-react": "^8.0.0",
"rehype-sanitize": "^6.0.0",
"sharp": "^0.34.5",
"slick-carousel": "^1.8.1",
"swagger-ui-react": "^5.30.0",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@iconify-icon/react": "^3.0.0",
"@iconify-json/bi": "^1.2.4",
"@iconify-json/material-symbols": "^1.2.33",
"@iconify/tailwind4": "^1.0.6",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-slick": "^0.23.13",
"@types/swagger-ui-react": "^5.18.0",
"@zenstackhq/openapi": "^2.20.1",
"@zenstackhq/trpc": "^2.21.1",
"eslint": "^9",
"eslint-config-next": "15.4.2",
"openapi-fetch": "^0.15.0",
"openapi-typescript": "^7.10.1",
"prisma": "^6.16.3",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.7",
"typescript": "^5.9.3",
"zenstack": "2.19.2"
}
}