-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.44 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.44 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "stayli",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0",
"yarn": ">=1.22.0"
},
"packageManager": "yarn@1.22.22",
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "vitest",
"test:ui": "vitest --ui",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"@radix-ui/react-avatar": "1.1.2",
"@radix-ui/react-checkbox": "1.1.3",
"@radix-ui/react-dialog": "1.1.4",
"@radix-ui/react-dropdown-menu": "2.1.4",
"@radix-ui/react-label": "2.1.1",
"@radix-ui/react-popover": "1.1.4",
"@radix-ui/react-select": "2.1.4",
"@radix-ui/react-separator": "1.1.1",
"@radix-ui/react-slot": "1.1.1",
"@radix-ui/react-switch": "1.1.2",
"@radix-ui/react-toast": "1.2.4",
"@react-pdf/renderer": "^4.3.1",
"@vercel/analytics": "latest",
"autoprefixer": "^10.4.20",
"bcrypt": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "4.1.0",
"lucide-react": "^0.454.0",
"next": "16.0.7",
"next-auth": "^5.0.0-beta.25",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.60.0",
"swr": "^2.3.7",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "3.25.76"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.9",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/bcrypt": "^6.0.0",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.15",
"baseline-browser-mapping": "^2.9.19",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.8",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^27.3.0",
"postcss": "^8.5",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^7.4.0",
"tailwindcss": "^4.1.9",
"tsx": "^4.21.0",
"tw-animate-css": "1.3.3",
"typescript": "^5",
"vitest": "^4.0.15"
}
}