-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma migrate deploy && prisma generate",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.10.0",
"@prisma/client": "^5.22.0",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@tailwindcss/forms": "^0.5.10",
"@tanstack/react-query": "^5.67.3",
"@types/node": "^20.5.7",
"@vercel/postgres": "^0.5.1",
"autoprefixer": "^10.4.15",
"axios": "^1.8.3",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"env-var": "^7.5.0",
"lru-cache": "^10.4.3",
"lucide-react": "^0.345.0",
"next": "15.2.8",
"next-auth": "^4.24.11",
"postcss": "^8.4.31",
"prisma": "^5.22.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"sharp": "^0.33.1",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.2.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/bcrypt": "^5.0.2",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.14",
"@vercel/style-guide": "^5.2.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.24",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.5.4"
},
"engines": {
"node": ">=18.17.0"
}
}