-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.95 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.95 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "my-next-app",
"version": "0.1.0",
"private": true,
"packageManager": "yarn@4.12.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"fix": "yarn lint --fix",
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "npx prisma generate",
"schema:gen": "yarn prisma generate --schema=./prisma/schema.prisma",
"migrate:gen": "yarn prisma migrate dev --create-only --schema=./prisma/schema.prisma --name",
"migrate-for-single": "yarn prisma migrate deploy --schema=./prisma/schema.prisma",
"migrate": "yarn migrate-for-single",
"migrate-for-single:reset": "yarn prisma migrate reset --skip-generate --force --schema=./prisma/schema.prisma",
"migrate:dev": "yarn migrate-for-single && DATABASE_URL=postgresql://app_user:local-password@localhost:5432/test?schema=public DIRECT_URL=postgresql://app_user:local-password@localhost:5432/test?schema=public yarn migrate-for-single",
"migrate:dev:reset": "yarn migrate-for-single:reset && DATABASE_URL=postgresql://app_user:local-password@localhost:5432/test?schema=public DIRECT_URL=postgresql://app_user:local-password@localhost:5432/test?schema=public yarn migrate-for-single:reset",
"postmigrate:dev:reset": "tsx prisma/seed.ts",
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.8",
"@mui/icons-material": "^7.3.4",
"@mui/material": "^7.3.4",
"@mui/material-nextjs": "^7.3.3",
"@neondatabase/serverless": "^1.0.0",
"@next/third-parties": "^15.2.2",
"@prisma/adapter-neon": "^6.3.1",
"@prisma/client": "^6.3.1",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@tailwindcss/line-clamp": "^0.4.4",
"@tanstack/react-form": "^1.3.1",
"@tanstack/react-query": "^5.90.5",
"@tanstack/zod-form-adapter": "^0.42.1",
"@trpc/client": "^11.7.1",
"@trpc/react-query": "^11.0.0-rc.755",
"@trpc/server": "^11.7.1",
"@vercel/blob": "^2.0.0",
"@vercel/og": "^0.8.0",
"class-variance-authority": "^0.7.1",
"client-only": "^0.0.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "17.2.3",
"lucide-react": "^0.554.0",
"next": "^15.2.2",
"next-auth": "^5.0.0-beta.25",
"next-nprogress-bar": "^2.4.7",
"next-themes": "^0.4.4",
"open-graph-scraper": "^6.9.0",
"openai": "^6.0.0",
"prisma": "^6.3.1",
"react": "^19.0.0",
"react-day-picker": "9.11.3",
"react-dom": "^19.0.0",
"react-error-boundary": "^6.0.0",
"react-markdown": "^10.0.0",
"react-virtualized": "^9.22.6",
"rehype-highlight": "^7.0.2",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1",
"sonner": "^2.0.1",
"superjson": "^2.2.2",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"url-join": "^5.0.0",
"ws": "^8.18.0",
"zod": "^4.0.0",
"zod-prisma-types": "^3.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next-auth/prisma-adapter": "^1.0.7",
"@tailwindcss/postcss": "^4.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-virtualized": "^9.22.2",
"@types/url-join": "^5.0.0",
"@types/ws": "^8.5.14",
"cross-env": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "15.5.11",
"jest": "^30.0.0",
"jest-environment-node": "^30.0.0-beta.3",
"postcss": "^8",
"prisma-case-format": "2.2.1",
"tailwindcss": "^4.0.0",
"ts-jest": "^29.3.4",
"typescript": "^5"
}
}