-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.63 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
53
54
55
56
57
58
{
"name": "dolparty",
"version": "0.1.0",
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.19.0",
"@tanstack/react-query": "^5.52.2",
"@toss/use-overlay": "^1.4.0",
"@vercel/postgres": "^0.9.0",
"axios": "^1.7.5",
"classnames": "^2.5.1",
"jsonwebtoken": "^9.0.2",
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-number-format": "^5.4.1",
"react-toastify": "^10.0.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.6",
"@svgr/webpack": "^8.1.0",
"@tanstack/react-query-devtools": "^5.52.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"prisma": "^5.19.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}