-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.26 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
{
"name": "quark",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,mts}": "prettier --write"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "1.0.5",
"@hookform/resolvers": "3.6.0",
"@prisma/client": "5.22.0",
"@radix-ui/react-avatar": "1.1.1",
"@radix-ui/react-checkbox": "1.1.2",
"@radix-ui/react-context-menu": "2.2.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-switch": "1.1.1",
"@radix-ui/react-toggle": "1.1.0",
"@radix-ui/react-toggle-group": "1.1.0",
"@radix-ui/react-tooltip": "1.1.4",
"@react-email/button": "0.0.15",
"@react-email/column": "0.0.10",
"@react-email/img": "0.0.8",
"@react-email/render": "0.0.15",
"@react-email/row": "0.0.8",
"@react-email/section": "0.0.12",
"@react-email/tailwind": "0.0.18",
"@react-email/text": "0.0.8",
"@t3-oss/env-nextjs": "0.10.1",
"@tanstack/react-table": "8.17.3",
"@vercel/analytics": "1.1.2",
"@vercel/speed-insights": "1.0.9",
"axios": "1.6.0",
"bcrypt": "5.1.1",
"class-variance-authority": "0.7.0",
"clsx": "2.0.0",
"cmdk": "1.0.4",
"date-fns": "3.6.0",
"date-fns-tz": "3.2.0",
"framer-motion": "12.0.0-alpha.1",
"geist": "1.1.0",
"jsonwebtoken": "9.0.2",
"lucide-react": "0.309.0",
"nanoid": "5.0.7",
"next": "15.1.0",
"next-auth": "5.0.0-beta.25",
"next-themes": "0.3.0",
"nodemailer": "6.9.14",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-email": "2.1.4",
"react-hook-form": "7.51.5",
"react-icons": "5.0.1",
"server-only": "0.0.1",
"sharp": "0.33.1",
"sonner": "1.3.1",
"swagger-ui-react": "5.17.14",
"swr": "2.2.4",
"tailwind-merge": "2.3.0",
"tailwindcss-animate": "1.0.7",
"use-debounce": "10.0.0",
"vaul": "1.0.0",
"zod": "3.23.8",
"zod-openapi": "4.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/bcrypt": "5.0.2",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "20.11.5",
"@types/nodemailer": "6.4.17",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.1",
"@types/swagger-ui-react": "4.18.3",
"autoprefixer": "10.4.16",
"eslint": "9.16.0",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-tailwindcss": "3.17.5",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"postcss": "8.4.31",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "0.6.1",
"prisma": "5.22.0",
"tailwindcss": "3.4.1",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.0"
}
}