-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.7 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
59
60
61
62
63
64
65
{
"name": "roomies",
"version": "0.1.0",
"license": "MIT",
"private": true,
"scripts": {
"format": "prettier --write .",
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start"
},
"engines": {
"node": "18.x",
"npm": ">=7.0.0",
"yarn": ">=1.19.0 < 2.0.0"
},
"dependencies": {
"@clerk/nextjs": "^4.29.7",
"@headlessui/react": "^1.7.13",
"@hookform/resolvers": "^2.9.10",
"@prisma/client": "^4.5.0",
"@tanstack/react-query": "^5.22.2",
"@tanstack/react-query-devtools": "^5.24.0",
"@trpc/client": "^11.0.0-next-beta.289",
"@trpc/next": "^11.0.0-next-beta.289",
"@trpc/react-query": "^11.0.0-next-beta.289",
"@trpc/server": "^11.0.0-next-beta.289",
"clsx": "^1.2.1",
"csstype": "^3.1.1",
"daisyui": "^2.46.0",
"next": "^14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.41.3",
"react-hot-toast": "^2.4.0",
"react-icons": "^4.7.1",
"superjson": "1.9.1",
"zod": "^3.18.0",
"zod-validation-error": "^3.0.2",
"zustand": "^4.2.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.8",
"@types/node": "^18.0.0",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.26.0",
"eslint-config-next": "13.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"postcss": "^8.4.14",
"prettier": "^2.8.2",
"prettier-plugin-organize-imports": "^3.2.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"prisma": "^4.5.0",
"tailwindcss": "^3.2.0",
"typescript": "^4.8.4"
}
}