-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.62 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
{
"name": "ebdmdev-beth",
"module": "src/index.tsx",
"type": "module",
"scripts": {
"db:push": "bunx drizzle-kit push:pg",
"db:studio": "bunx drizzle-kit studio",
"db:generate-migration": "bunx drizzle-kit generate:pg --schema=./src/db/schema.ts --out=./migrations",
"build": "bun build ./src/client/* --outdir=public --minify && bun run tw",
"dev": "concurrently \"bun run --watch src/index.ts\" \"bun run tw:dev\"",
"tw": "bunx tailwindcss -i ./src/styles.css -o ./tailwind-gen/styles.css",
"tw:dev": "bunx tailwindcss -i ./src/styles.css -o ./tailwind-gen/styles.css --watch",
"deploy": "flyctl deploy"
},
"devDependencies": {
"@flydotio/dockerfile": "latest",
"@types/pg": "^8.10.2",
"bun-types": "latest",
"concurrently": "^8.2.0",
"drizzle-kit": "^0.19.13",
"tailwindcss": "^3.3.3",
"typed-html": "^3.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@elysiajs/cookie": "^0.6.1",
"@elysiajs/cron": "^0.6.0",
"@elysiajs/static": "^0.6.0",
"@kitajs/html": "^2.0.0",
"@libsql/client": "^0.3.2",
"@notionhq/client": "^2.2.13",
"@tailwindcss/forms": "^0.5.6",
"astro-icon": "^0.8.1",
"drizzle-orm": "^0.28.5",
"elysia": "^0.6.16",
"elysia-autoroutes": "^0.2.2",
"fs-file-tree": "^1.1.1",
"gpt-3-encoder": "^1.1.4",
"highlight.js": "^11.8.0",
"htmx.org": "^1.9.5",
"hyperscript.org": "^0.9.11",
"langchain": "^0.0.147",
"notion-client": "^6.16.0",
"pdf-parse": "^1.1.1",
"pg": "^8.11.3",
"pino-pretty": "^10.2.0",
"postgres": "^3.3.5",
"redis": "^4.6.8"
}
}