-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.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
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
{
"name": "rent_vol2",
"version": "0.1.0",
"private": true,
"scripts": {
"analyze": "ANALYZE=true yarn build",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"migrate": "prisma migrate dev --preview-feature",
"gen": "prisma db push",
"push": "prisma db push",
"studio": "prisma studio",
"seed": "prisma db seed",
"test": "jest --watch --coverage"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"commonjs\"} prisma/seed.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@next/bundle-analyzer": "^13.5.4",
"@prisma/client": "^4.15.0",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@tanstack/react-query": "^4.36.1",
"@types/bcryptjs": "^2.4.2",
"@types/node": "20.3.0",
"@types/react": "18.2.11",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"eslint": "8.42.0",
"eslint-config-next": "13.4.5",
"lucide-react": "^0.241.0",
"next": "13.4.3",
"next-auth": "^4.22.1",
"postcss": "8.4.24",
"react": "18.2.0",
"react-day-picker": "^8.7.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.44.3",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.3",
"tailwind-merge": "^1.13.1",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.6",
"typescript": "^5.2.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@mermaid-js/mermaid-cli": "^10.6.1",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.8",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.3.0",
"prisma": "^4.15.0",
"prisma-erd-generator": "^1.11.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}