-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
105 lines (105 loc) · 3.17 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
{
"name": "dorf-forms",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"author": {
"name": "matheins",
"url": "https://twitter.com/matheins"
},
"scripts": {
"dev": "next dev",
"turbo": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push": "pnpm with-env drizzle-kit push:mysql",
"with-env": "dotenv -e .env.local --"
},
"dependencies": {
"@hookform/resolvers": "^3.1.0",
"@planetscale/database": "^1.7.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-context-menu": "^2.1.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@t3-oss/env-nextjs": "^0.3.1",
"@tanstack/react-table": "^8.9.1",
"@types/node": "20.2.5",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@upstash/qstash": "^0.3.6",
"@upstash/ratelimit": "^0.4.3",
"@upstash/redis": "^1.20.6",
"@vercel/analytics": "^1.0.1",
"@vercel/edge": "^0.3.4",
"@vercel/kv": "^0.2.1",
"@vercel/og": "^0.5.7",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.6.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"dayjs": "^1.11.7",
"drizzle-orm": "^0.26.1",
"drizzle-zod": "^0.4.2",
"file-saver": "^2.0.5",
"json2csv": "6.0.0-alpha.2",
"lucide-react": "^0.224.0",
"nanoid": "^4.0.2",
"next": "13.4.5",
"next-auth": "^4.22.1",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.3",
"postcss": "8.4.24",
"postmark": "^3.0.18",
"react": "18.2.0",
"react-day-picker": "^8.7.1",
"react-dom": "18.2.0",
"react-hook-form": "^7.44.2",
"react-hotkeys-hook": "^4.4.0",
"tailwind-merge": "^1.12.0",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.5",
"typescript": "5.1.3",
"validator": "^13.9.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@ianvs/prettier-plugin-sort-imports": "^4.0.0",
"@types/file-saver": "^2.0.5",
"@types/json2csv": "^5.0.3",
"@types/validator": "^13.7.17",
"dotenv-cli": "^7.2.1",
"drizzle-kit": "^0.18.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-tailwindcss": "^3.12.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"pretty-quick": "^3.1.3"
},
"engines": {
"node": ">=v18.16.0"
},
"packageManager": "[email protected]"
}