-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.91 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "melvin",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"postinstall": "prisma generate",
"build": "run-s build:*",
"build:1-generate": "prisma generate",
"build:2-build": "next build",
"build-analyze": "cross-env ANALYZE=true pnpm build",
"build-ci": "run-s build:* prisma:deploy",
"db:up": "docker compose up -d",
"db:down": "docker compose down",
"db:nuke": "docker compose down --volumes --remove-orphans && pnpm db:up",
"prisma:push": "prisma db push",
"prisma:seed": "prisma db seed",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --skip-seed",
"prisma:deploy": "prisma migrate deploy",
"dev": "run-s db:up dev:next",
"dev:next": "next dev",
"start": "next start",
"lint": "run-s lint:*",
"lint:es": "next lint",
"lint:ts": "tsc --pretty --noEmit",
"test": "run-s test:*",
"test:unit": "jest",
"test:e2e": "playwright test",
"pw:codegen": "playwright codegen http://localhost:3000 --load-storage=e2e/setup/storage-state.json"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@headlessui/react": "^2.2.0",
"@hookform/resolvers": "^3.9.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.21.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@tanstack/react-query": "^4.18.0",
"@tanstack/react-table": "^8.20.5",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@vercel/speed-insights": "^1.0.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dayjs": "^1.11.13",
"jspdf": "^2.5.2",
"jspdf-autotable": "^3.8.4",
"lucide-react": "^0.453.0",
"next": "^15.0.1",
"next-auth": "^4.24.10",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.15",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"react-pdf": "^8.0.2",
"react-sizeme": "^3.0.2",
"react-toastify": "^10.0.6",
"superjson": "^2.0.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^9.0.3",
"@next/bundle-analyzer": "^15.0.1",
"@playwright/test": "^1.48.2",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.0",
"@types/eslint": "^8.56.12",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.1",
"@types/react": "18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.16",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.8.3",
"eslint-plugin-testing-library": "^6.4.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "^7.0.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^5.21.1",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"tsx": "^4.16.5",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}