-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"private": true,
"workspaces": [
"web",
"dashboard",
"frontend",
"landing",
"packages/*"
],
"scripts": {
"sync:icons": "bun run ./scripts/sync-icons.ts",
"fmt": "prettier --write . && go fmt ./...",
"build:web": "cd web && bun run build",
"build:dash": "cd dashboard && bun run build",
"build:landing": "cd landing && bun run build",
"build": "bun run build:web && bun run build:dash",
"landing:dev": "cd landing && bun run dev",
"landing:build": "cd landing && bun run build",
"landing:preview": "cd landing && bun run preview",
"server": "bun run build && go run ./cmd/server/",
"lint": "bunx eslint . & go vet ./... & svelte-check --no-tsconfig --ignore \"dist,build,node_modules\"",
"knip": "knip"
},
"dependencies": {
"@lucide/svelte": "^0.577.0",
"@tanstack/svelte-virtual": "^3.13.0"
},
"devDependencies": {
"@eslint/compat": "^2.0.5",
"@eslint/css": "^1.1.0",
"@eslint/js": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@tsconfig/svelte": "^5.0.0",
"@types/bun": "^1.3.11",
"@types/node": "^25.6.0",
"esbuild": "^0.27.4",
"eslint": "^10.2.0",
"knip": "^6.4.0",
"prettier": "3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.1"
}
}