-
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.09 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.09 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
{
"name": "bookmark",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"db:pull": "dotenv -e .env.local prisma db pull",
"db:push": "dotenv -e .env.local prisma db push",
"db:mig": "dotenv -e .env.local prisma migrate dev",
"db:reset": "dotenv -e .env.local prisma migrate reset",
"db:seed": "dotenv -e .env.local prisma db seed",
"db:studio": "dotenv -e .env.local prisma studio",
"lint": "eslint ."
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.9.1",
"@prisma/client": "6.1.0",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-slot": "^1.1.1",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^24.2.0",
"lucide-react": "^0.468.0",
"mysql2": "^3.11.5",
"next": "14.2.20",
"next-auth": "5.0.0-beta.25",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.54.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1",
"zod-i18n-map": "^2.27.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@next/eslint-plugin-next": "^14.2.14",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bcrypt": "^5.0.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^9.17.0",
"eslint-config-next": "14.2.20",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8",
"prettier": "^3.3.3",
"prisma": "^6.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"typescript-eslint": "^8.18.1"
}
}