-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"seed": "node -r dotenv/config ./scripts/seed.js",
"start": "next start"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"@tailwindcss/forms": "^0.5.9",
"@types/node": "22.5.5",
"@vercel/postgres": "^0.10.0",
"autoprefixer": "10.4.20",
"bcrypt": "^5.1.1",
"clsx": "^2.1.1",
"next": "^14.2.13",
"next-auth": "^5.0.0-beta.4",
"postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"sharp": "^0.33.5",
"tailwindcss": "3.4.12",
"typescript": "5.6.2",
"use-debounce": "^10.0.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.1",
"@eslint-react/eslint-plugin": "^1.14.2",
"@types/bcrypt": "^5.0.2",
"@types/react": "18.3.8",
"@types/react-dom": "18.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.11.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12"
},
"engines": {
"node": ">=18.17.0"
}
}