-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.49 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
{
"name": "weel",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "dotenv -e .env.local -- npx prisma db push",
"db:studio": "dotenv -e .env.studio -- npx prisma studio",
"db:seed": "dotenv -e .env.local -- ts-node prisma/seed.ts",
"postinstall": "prisma generate"
},
"dependencies": {
"@hookform/resolvers": "^3.3.1",
"@prisma/client": "^5.6.0",
"@prisma/extension-accelerate": "^0.6.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@radix-ui/themes": "^2.0.0",
"@tailwindcss/forms": "^0.5.6",
"@tailwindcss/typography": "^0.5.10",
"@types/bcrypt": "^5.0.0",
"@types/node": "20.5.9",
"@types/react": "^18.2.45",
"@types/react-dom": "18.2.7",
"@upstash/ratelimit": "^0.4.4",
"@upstash/redis": "^1.22.0",
"@vercel/edge": "^1.1.0",
"@visx/axis": "^3.5.0",
"@visx/event": "^3.3.0",
"@visx/grid": "^3.5.0",
"@visx/responsive": "^3.3.0",
"@visx/scale": "^3.5.0",
"@visx/tooltip": "^3.3.0",
"autoprefixer": "10.4.15",
"bcrypt": "^5.1.1",
"clsx": "^2.0.0",
"cobe": "^0.6.3",
"date-fns": "^2.30.0",
"eslint": "8.48.0",
"eslint-config-next": "^14.0.3",
"framer-motion": "^10.16.4",
"html-escaper": "^3.0.3",
"lucide-react": "^0.288.0",
"nanoid": "^5.0.3",
"next": "^14.0.3",
"next-themes": "^0.2.1",
"postcss": "^8.4.31",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.2",
"react-virtualized": "^9.22.5",
"sonner": "^1.0.3",
"swr": "^2.2.4",
"tailwind-merge": "^2.0.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"use-debounce": "^9.0.4",
"vaul": "^0.7.9",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"zod": "^3.22.2"
},
"devDependencies": {
"@commander-js/extra-typings": "^11.1.0",
"@faker-js/faker": "^8.2.0",
"@types/react-virtualized": "^9.21.28",
"commander": "^11.1.0",
"csv": "^6.3.5",
"prisma": "^5.4.1",
"tailwind-scrollbar": "^3.0.5",
"ts-node": "^10.9.1"
},
"prisma": {
"seed": "dotenv -e .env.local -- ts-node prisma/seed.ts"
}
}