-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.5 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
{
"name": "projex",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev --turbo",
"build": "next build",
"start": "cross-env NODE_ENV=production next start",
"preview": "cross-env NODE_ENV=production next build && next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"typecheck": "tsc --noEmit",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"db:studio": "prisma studio",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx src/prisma/seed.ts",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache > /dev/null 2>&1",
"prepare": "husky",
"postinstall": "prisma generate"
},
"prisma": {
"schema": "src/prisma/schema.prisma"
},
"dependencies": {
"@clerk/nextjs": "^6.9.6",
"@clerk/themes": "^2.2.3",
"@hello-pangea/dnd": "^17.0.0",
"@hookform/resolvers": "^3.9.1",
"@neondatabase/serverless": "^0.10.4",
"@prisma/adapter-neon": "^6.1.0",
"@prisma/client": "^6.1.0",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.1.6",
"@tanstack/react-query": "^5.62.10",
"@tanstack/react-query-devtools": "^5.62.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^11.15.0",
"lucide-react": "^0.468.0",
"next": "14.2.20",
"react": "^18.3.1",
"react-day-picker": "8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-pro-sidebar": "^1.1.0",
"react-spinners": "^0.15.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"zod": "^3.24.1",
"zustand": "^5.0.2"
},
"devDependencies": {
"@types/node": "^20.17.10",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.4",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prisma": "^6.1.0",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}