-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.58 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
91
92
93
94
95
96
97
98
99
100
{
"name": "makyo-app",
"type": "module",
"scripts": {
"server": "MAKYO_API_TOKEN=testtoken bun --watch run server/index.ts",
"client": "VITE_MAKYO_BUILDID=$(date +%s) bunx vite --config client/vite.config.ts",
"client:build": "VITE_MAKYO_BUILDID=$(date +%s) bunx tsc --project client/tsconfig.json && bunx --bun vite --config client/vite.config.ts build",
"client:preview": "bunx --bun vite --config client/vite.config.ts preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"scaffold": "bunx --bun hygen",
"drizzle:schema": "bunx drizzle-kit generate",
"drizzle:migrate": "bun run ./server/db/migrate.ts",
"drizzle:seed": "bun run ./server/db/seed.ts",
"typecheck": "tsc --noEmit -p server/tsconfig.json && tsc --noEmit -p client/tsconfig.json"
},
"dependencies": {
"@hono/zod-validator": "^0.2.2",
"base64-arraybuffer": "^1.0.2",
"bun-compression": "^0.0.4",
"drizzle-orm": "^0.30.10",
"hono": "^4.2.5",
"ollama": "^0.5.0",
"openai": "^4.38.2",
"random-words": "^2.0.1",
"uuid": "^9.0.1",
"zod": "^3.22.5"
},
"devDependencies": {
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@floating-ui/react": "^0.26.16",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-checkbox": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@tanstack/query-broadcast-client-experimental": "^5.32.0",
"@tanstack/query-sync-storage-persister": "^5.32.0",
"@tanstack/react-query": "^5.32.0",
"@tanstack/react-query-devtools": "^5.32.0",
"@tanstack/react-query-persist-client": "^5.32.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bun": "latest",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/react-transition-group": "^4.4.10",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@xyflow/react": "^12.0.3",
"clsx": "^2.1.0",
"dayjs": "^1.11.11",
"drizzle-kit": "^0.21.2",
"emoji-mart": "^5.6.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"framer-motion": "11.0.8",
"hygen": "^6.2.11",
"immer": "^10.0.4",
"jotai": "^2.8.0",
"jotai-location": "^0.5.5",
"mdast-util-newline-to-break": "^2.0.0",
"react": "^19.0.0-rc-a7d1240c-20240731",
"react-dom": "^19.0.0-rc-a7d1240c-20240731",
"react-error-boundary": "^4.0.13",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.0",
"react-local-toast": "^2.0.3",
"react-markdown": "^9.0.1",
"react-spinners": "^0.13.8",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.5.3",
"react-use-measure": "^2.1.1",
"react-use-motion-measure": "^3.0.0",
"react-virtuoso": "^4.7.13",
"rehype-external-links": "^3.0.0",
"rehype-katex": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"sass": "^1.75.0",
"typescript": "^5.2.2",
"use-debounce": "^10.0.0",
"use-immer": "^0.9.0",
"vaul": "^0.9.1",
"vite": "^5.2.0",
"vite-tsconfig-paths": "^4.3.2",
"wouter": "^3.1.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}