-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
38
39
40
41
42
43
44
45
46
{
"name": "loop",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "pnpm css:build && tsx watch src/index.ts",
"build": "pnpm css:build && tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "RUN_REAL_CLI_E2E=1 vitest run tests/e2e",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"typecheck": "tsc --noEmit",
"css:build": "tailwindcss -i src/styles/app.css -o public/app.css --minify",
"css:watch": "tailwindcss -i src/styles/app.css -o public/app.css --watch"
},
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@hono/node-server": "^2.0.1",
"better-sqlite3": "^12.9.0",
"drizzle-orm": "^0.45.2",
"execa": "^9.6.1",
"hono": "^4.12.16",
"nanoid": "^5.1.11",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.0",
"drizzle-kit": "^0.31.10",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
}
}