-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.95 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"private": true,
"scripts": {
"build": "next build",
"dev": "NODE_OPTIONS='--inspect' next dev",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\"",
"lint": "next lint",
"prebuild": "prisma generate",
"predev": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"studio": "prisma studio",
"start": "next start",
"type-check": "tsc",
"test": "jest",
"test-watch": "jest --watch",
"zod": "ts-to-zod --all",
"forms": "ts-node src/lib/form.ts"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@boxyhq/saml-jackson": "^1.3.6",
"@headlessui/react": "^1.4.3",
"@hookform/resolvers": "^2.9.10",
"@next-auth/prisma-adapter": "^1.0.1",
"@prisma/client": "4.7.0",
"@tanstack/react-query": "^4.13.0",
"@trpc/client": "^10.0.0-proxy-beta.26",
"@trpc/next": "^10.0.0-proxy-beta.26",
"@trpc/react-query": "^10.0.0-proxy-beta.26",
"@trpc/server": "^10.0.0-proxy-beta.26",
"casbin": "^5.26.1",
"casbin-basic-adapter": "^0.1.0",
"clsx": "^1.1.1",
"cuid": "^2.1.8",
"daisyui": "^2.42.1",
"date-fns": "^2.28.0",
"fs": "^0.0.1-security",
"gray-matter": "^4.0.3",
"js-cookie": "^3.0.1",
"jsbarcode": " 3.11.0",
"next": "^15.5.21",
"next-auth": "^4.10.3",
"next-plausible": "^3.1.4",
"next-qrcode": "^2.5.1",
"nodemailer": "^6.9.9",
"overlayscrollbars": "^2.1.0",
"overlayscrollbars-react": "^0.5.0",
"pg": "^8.10.0",
"react": "^18.2.0",
"react-confetti": "^6.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.39.5",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.6.0",
"react-table": "^7.8.0",
"react-textarea-autosize": "^8.3.3",
"react-to-print": "^2.14.12",
"recharts": "^2.4.1",
"sharp": "^0.32.6",
"sitemap": "^7.1.0",
"superjson": "^1.12.1",
"theme-change": "^2.2.0",
"unist-util-visit": "^4.1.1",
"use-debounce": "^7.0.1",
"uuid": "^8.3.2",
"zod": "^3.22.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.1",
"@tailwindcss/typography": "^0.5.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/js-cookie": "^3.0.1",
"@types/node": "^17.0.10",
"@types/nodemailer": "^6.4.7",
"@types/pg": "^8.6.6",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-table": "^7.7.14",
"autoprefixer": "^10.4.2",
"eslint": "8.11.0",
"eslint-config-next": "^12.1.7-canary.48",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"postcss": "^8.4.31",
"prettier": "^2.5.1",
"prisma": "4.7.0",
"prisma-zod-generator": "^0.5.3",
"tailwindcss": "^3.0.15",
"ts-node": "^10.9.1",
"ts-to-zod": "^1.13.1",
"typescript": "^4.6.2"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}