This repository was archived by the owner on Sep 8, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.95 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
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
101
{
"name": "labrador",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"tsx watch src/server/index.ts\"",
"dev:docker": "docker compose -f docker-compose.dev.yml up --build",
"build": "vite build && tsup && mkdir -p dist/server/db && cp -r src/server/db/migrations dist/server/db/",
"preview": "node dist/server/index.js",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"test": "vitest",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint src/",
"prepare": "husky || true"
},
"dependencies": {
"@codemirror/lang-yaml": "^6.0.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.0.0",
"@codemirror/view": "^6.0.0",
"@fastify/cookie": "^11.0.0",
"@fastify/cors": "^10.0.0",
"@fastify/jwt": "^9.0.0",
"@fastify/rate-limit": "^10.0.0",
"@fastify/static": "^8.0.0",
"@fastify/websocket": "^11.0.0",
"@hookform/resolvers": "^3.9.0",
"@lezer/highlight": "^1.2.3",
"@libsql/client": "^0.17.2",
"@radix-ui/react-dialog": "^1.1.0",
"@radix-ui/react-dropdown-menu": "^2.1.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-select": "^2.1.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.0",
"@tanstack/react-query": "^5.0.0",
"bcrypt": "^5.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"codemirror": "^6.0.0",
"dockerode": "^4.0.0",
"drizzle-orm": "^0.36.0",
"execa": "^9.0.0",
"fastify": "^5.0.0",
"js-yaml": "^4.1.0",
"lucide-react": "^0.460.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-hook-form": "^7.53.0",
"react-router-dom": "^6.26.0",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.54.2",
"@types/bcrypt": "^5.0.0",
"@types/dockerode": "^3.3.0",
"@types/js-yaml": "^4.0.0",
"@types/jsdom": "^28.0.1",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.0",
"concurrently": "^9.0.0",
"drizzle-kit": "^0.28.0",
"eslint": "^9.0.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"postcss": "^8.4.0",
"prettier": "^3.8.3",
"tailwindcss": "^3.4.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.0",
"vitest": "^2.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": "prettier --write"
},
"pnpm": {
"onlyBuiltDependencies": [
"bcrypt",
"cpu-features",
"protobufjs",
"ssh2"
]
}
}