-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.4 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.4 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
{
"name": "solar-car-website-next",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"db:generate": "prisma generate",
"db:migrate:reset": "prisma migrate reset",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:prod": "prisma migrate deploy",
"db:pull": "prisma db pull",
"db:push": "prisma db push",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"dev": "next dev --turbo",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"@clerk/nextjs": "^7.3.5",
"@flags-sdk/vercel": "1.3.0",
"@prisma/client": "^6.4.1",
"@supabase/supabase-js": "^2.45.4",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.50.0",
"@tanstack/react-table": "^8.20.5",
"@trpc/client": "^11.0.0-rc.446",
"@trpc/next": "^11.0.0-rc.446",
"@trpc/react-query": "^11.0.0-rc.446",
"@trpc/server": "^11.0.0-rc.446",
"@vercel/analytics": "^2.0.1",
"axios": "^1.7.9",
"browser-image-compression": "^2.0.2",
"classnames": "^2.5.1",
"flags": "4.0.6",
"framer-motion": "^12.23.22",
"geist": "^1.3.0",
"next": "^16.1.6",
"npm": "10.9.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hot-toast": "^2.5.2",
"react-select": "^5.8.1",
"react-spinners": "^0.15.0",
"server-only": "^0.0.1",
"sharp": "^0.33.5",
"superjson": "^2.2.1",
"svix": "^1.37.0",
"zod": "^3.23.3"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@types/react": "19.2.10",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^8.57.0",
"eslint-config-next": "15.5.9",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-sort-keys": "^2.3.5",
"prettier": "^3.3.3",
"prisma": "^6.4.1",
"sass": "^1.79.4",
"tsx": "^4.22.0",
"typescript": "^5.5.3"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"ct3aMetadata": {
"initVersion": "7.37.0"
},
"packageManager": "yarn@1.22.22"
}