-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.31 KB
/
package.json
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
{
"private": true,
"scripts": {
"dev": "prisma generate && next dev",
"build": "prisma generate && prisma db push && next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"dependencies": {
"@prisma/client": "^4.16.2",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@tanstack/react-table": "^8.9.1",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@vercel/postgres": "^0.3.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"daisyui": "^2.52.0",
"lucide-react": "^0.221.0",
"next": "^13.4.7",
"next-auth": "^4.22.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"sharp": "^0.32.1",
"swr": "^2.1.5",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"tw-elements": "^1.0.0-beta2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"autoprefixer": "^10.4.4",
"eslint": "8.11.0",
"eslint-config-next": "^13.0.5",
"postcss": "^8.4.12",
"prettier": "^2.8.8",
"prisma": "^4.16.2",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.2"
}
}