-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.15 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.15 KB
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
{
"name": "beth-stack",
"author": {
"name": "Filip Vučemilović-Grgić",
"email": "filip.vucemilovic.grgic@gmail.com",
"url": "https://github.com/fvucemilo"
},
"description": "A opinionated hypermedia-driven architecture balancing developer experience and performance.",
"homepage": "https://the-beth-stack.fly.dev",
"license": "MIT",
"module": "src/index.tsx",
"type": "module",
"scripts": {
"db:push": "bunx drizzle-kit push:sqlite",
"db:studio": "bunx drizzle-kit studio",
"db:seed": "bun ./src/db/seed.ts",
"dev": "concurrently \"bun run --watch src/index.tsx\" \"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"
},
"devDependencies": {
"bun-types": "latest",
"concurrently": "^8.2.0",
"drizzle-kit": "^0.19.12",
"tailwindcss": "^3.3.3",
"typed-html": "^3.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@elysiajs/html": "^0.5.2",
"@libsql/client": "^0.5.2",
"drizzle-orm": "^0.29.4",
"elysia": "^0.5.25"
}
}