-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.52 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
{
"name": "discoverypilot",
"private": false,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "wrangler pages deploy ./build/client",
"dev:remix": "remix vite:dev --host",
"dev:agent": "wrangler pages dev ./build/client",
"dev": "concurrently --names remix,agent --prefix \"[{time} {name}]\" --prefix-colors \"auto\" \"bun run dev:remix\" \"bun run typegen && bun run build && bun run dev:agent\"",
"lint": "eslint --flag unstable_ts_config --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc",
"typegen": "wrangler types"
},
"dependencies": {
"@openai/realtime-api-beta": "openai/openai-realtime-api-beta",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@remix-run/cloudflare": "^2.14.0",
"@remix-run/cloudflare-pages": "^2.14.0",
"@remix-run/react": "^2.14.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.11.17",
"isbot": "^5.1.17",
"lucide-react": "^0.460.0",
"next-themes": "^0.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remix-utils": "^7.7.0",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"wavtools": "^0.1.5"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@happy-dom/global-registrator": "^15.11.6",
"@remix-run/dev": "^2.14.0",
"@remix-run/fs-routes": "^2.14.0",
"@remix-run/route-config": "^2.14.0",
"@remix-run/testing": "^2.14.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"autoprefixer": "^10.4.20",
"bun-types": "^1.1.34",
"concurrently": "^9.1.0",
"eslint": "^9.15.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-remix": "^1.1.1",
"jiti": "^2.4.0",
"openai": "^4.72.0",
"openai-realtime-console": "https://github.com/openai/openai-realtime-console",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.2",
"wrangler": "3.87.0"
},
"engines": {
"node": ">=20.0.0"
}
}