-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.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
47
48
49
50
51
52
53
54
{
"name": "basic",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --mode client && vite build",
"preview": "bun run --cwd=dist index.js",
"check": "biome check . && bun run prettier:format && bun run type-check && bun run depcruise",
"check:write": "biome check --write . && bun run prettier:format:write",
"type-check": "tsgo --noEmit --pretty",
"depcruise": "depcruise app",
"format": "biome format . && bun run prettier:format",
"format:write": "biome format --write . && bun run prettier:format:write",
"prettier:format": "prettier --ignore-path .prettierignore --ignore-path .gitignore --check .",
"prettier:format:write": "prettier --ignore-path .prettierignore --ignore-path .gitignore --write .",
"test": "bun run test:unit && bun run test:integration",
"test:unit": "bun test app/",
"test:integration": "bun run setup-test-db && vitest tests/integration/",
"test:e2e": "bun run setup-test-db && playwright test",
"test:e2e:ci": "bun run setup-test-db:postgres && playwright test",
"setup-test-db": "bun run setup-test-db:pglite",
"setup-test-db:pglite": "rm -rf pgdata && bun --bun drizzle-kit push --config drizzle-test.config.ts && DATABASE_URL='' bun tests/setup-db.ts",
"setup-test-db:postgres": "bun --bun drizzle-kit push --config drizzle.config.ts && bun tests/setup-db.ts"
},
"private": true,
"dependencies": {
"drizzle-orm": "^0.44.4",
"hono": "^4.10.4",
"honox": "0.1.52",
"postgres": "^3.4.7",
"tailwind-merge": "^3.3.1",
"tailwind-variants": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@electric-sql/pglite": "0.3.14",
"@happy-dom/global-registrator": "^20.0.10",
"@hono/vite-build": "1.7.0",
"@hono/vite-dev-server": "0.23.0",
"@playwright/test": "1.56.1",
"@tailwindcss/vite": "4.1.17",
"@types/bun": "1.3.1",
"@types/node": "24.11.0",
"@typescript/native-preview": "7.0.0-dev.20251128.1",
"dependency-cruiser": "^17.3.1",
"drizzle-kit": "0.31.6",
"prettier": "3.6.2",
"prettier-plugin-toml": "2.0.6",
"tailwindcss": "4.1.17",
"typescript": "^5.9.3",
"vite": "7.2.2",
"vitest": "4.1.0"
}
}