-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.82 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": "jaison",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev --host",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"preview": "bun run build && bun run --env-file=.env remix-serve ./build/server/index.js",
"typecheck": "tsc",
"check": "bun run typecheck && bun run lint",
"format": "prettier app/** -w",
"drizzle:push": "bun run drizzle-kit push --config drizzle/config.ts",
"drizzle:studio": "drizzle-kit studio --config drizzle/config.ts",
"drizzle:seed": "bun run drizzle/seed/index.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.4.0",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@supabase/ssr": "^0.3.0",
"@supabase/supabase-js": "^2.43.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"drizzle-orm": "^0.30.10",
"hsl-radix-colors": "^1.0.1",
"isbot": "^5.1.6",
"lucide-react": "^0.378.0",
"nanoid": "^5.0.7",
"next-themes": "^0.3.0",
"openai": "^4.47.1",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone-esm": "^15.0.1",
"react-hook-form": "^7.51.4",
"remix-event-stream": "^1.0.0",
"revai-node-sdk": "^3.8.5",
"tailwind-merge": "^2.3.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.0"
},
"devDependencies": {
"@remix-run/dev": "^2.9.2",
"@types/bun": "^1.1.2",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.21.2",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sort-react-dependency-arrays": "^0.3.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}