-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
90 lines (90 loc) · 2.84 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
{
"name": "antonai",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "pnpm run build && wrangler pages deploy",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "wrangler pages dev ./build/client",
"typecheck": "tsc",
"typegen": "wrangler types",
"preview": "pnpm run build && wrangler pages dev",
"cf-typegen": "wrangler types",
"format": "prettier --write .",
"db:generate": "drizzle-kit generate"
},
"dependencies": {
"@cloudflare/ai-utils": "^1.0.1",
"@heroicons/react": "^2.1.5",
"@nozbe/watermelondb": "^0.27.1",
"@octokit/auth-oauth-user": "^5.1.1",
"@octokit/oauth-app": "^7.1.3",
"@octokit/oauth-methods": "^5.1.2",
"@octokit/rest": "^21.0.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@remix-run/cloudflare": "^2.10.2",
"@remix-run/cloudflare-pages": "^2.10.2",
"@remix-run/react": "^2.10.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.11",
"drizzle-orm": "^0.32.0",
"embla-carousel-react": "^8.1.6",
"fetch-event-stream": "^0.1.5",
"highlight.js": "^11.10.0",
"isbot": "^5.1.12",
"lucide-react": "^0.408.0",
"marked": "^13.0.2",
"next-themes": "^0.3.0",
"octokit": "^4.0.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"replicate": "^0.31.1",
"rxdb": "^15.28.0",
"rxjs": "^7.8.1",
"simplex-noise": "^4.0.2",
"sonner": "^1.5.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.9.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240712.0",
"@remix-run/dev": "^2.10.2",
"@tailwindcss/typography": "^0.5.13",
"@types/highlight.js": "^10.1.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.23.0",
"eslint": "^9.7.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.39",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-tsconfig-paths": "^4.3.2",
"wrangler": "3.64.0"
},
"engines": {
"node": ">=20.0.0"
}
}