-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
48
49
50
51
52
{
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"db:push": "npx drizzle-kit push",
"db:seed": "npx tsx -r dotenv/config ./db/seed.ts",
"build": "next build",
"dev": "next dev",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.1.3",
"@next/env": "^14.2.4",
"@tailwindcss/forms": "^0.5.7",
"@types/node": "20.14.2",
"@vercel/postgres": "^0.8.0",
"autoprefixer": "10.4.19",
"bcrypt": "^5.1.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.31.2",
"drizzle-zod": "^0.5.1",
"next": "15.0.0-canary.32",
"next-auth": "^5.0.0-beta.19",
"postcss": "8.4.38",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"tailwindcss": "3.4.4",
"tsx": "^4.15.4",
"typescript": "5.4.5",
"use-debounce": "^10.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@vercel/style-guide": "^6.0.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.7",
"eslint": "^9.4.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "9.1.0",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "0.6.3"
},
"engines": {
"node": ">=18.17.0"
}
}