-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.55 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
{
"name": "my-remix-app",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "npm run db:migrate && remix vite:build",
"dev": "remix vite:dev",
"typecheck": "tsc",
"db:migrate": "tsx ./scripts/migrate.ts",
"db:generate": "drizzle-kit generate",
"studio": "drizzle-kit studio"
},
"dependencies": {
"@fontsource-variable/jetbrains-mono": "^5.0.20",
"@fontsource-variable/open-sans": "^5.0.28",
"@hookform/resolvers": "^3.3.4",
"@internationalized/date": "^3.5.2",
"@radix-ui/react-accordion": "^1.1.2",
"@react-spring/web": "^9.7.3",
"@remix-pwa/sw": "^3.0.1",
"@remix-pwa/worker-runtime": "^2.1.1",
"@remix-run/node": "^2.8.0",
"@remix-run/react": "^2.8.0",
"@remix-run/server-runtime": "^2.8.0",
"@use-gesture/react": "^10.3.1",
"@vercel/analytics": "^1.2.2",
"@vercel/remix": "^2.8.0",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.0",
"date-fns": "^3.6.0",
"drizzle-orm": "^0.31.0",
"drizzle-zod": "^0.5.1",
"eslint-plugin-drizzle": "^0.2.3",
"isbot": "^4",
"lodash-es": "^4.17.21",
"lucide-react": "^0.363.0",
"postgres": "^3.4.4",
"react": "^18.2.0",
"react-aria": "^3.33.1",
"react-aria-components": "^1.2.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.2",
"react-responsive": "^10.0.0",
"recharts": "^2.12.5",
"remix-hook-form": "^4.3.1",
"tailwind-merge": "^2.2.2",
"tailwind-variants": "^0.2.1",
"tailwindcss-react-aria-components": "^1.1.1",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-pwa/dev": "^3.0.4",
"@remix-run/dev": "^2.8.0",
"@remix-run/eslint-config": "^2.8.0",
"@types/bcryptjs": "^2.4.6",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.22.1",
"eslint": "^8.38.0",
"pg": "^8.11.3",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.7.1",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
"node": ">=18.0.0"
}
}