-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
{
"name": "linkden",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"typecheck": "turbo check-types",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"dev:web": "turbo -F web dev:bare",
"dev:server": "turbo -F server dev:standalone",
"dev:docs": "turbo -F docs dev",
"db:push": "turbo -F @linkden/db db:push",
"db:generate": "turbo -F @linkden/db db:generate",
"deploy": "turbo -F @linkden/infra deploy",
"ship": "turbo -F @linkden/infra deploy",
"destroy": "turbo -F @linkden/infra destroy",
"db:reset": "rm -rf apps/server/.wrangler/state && echo 'Local DB wiped. Run bun dev to recreate.'",
"reset:password": "bun scripts/reset-password.ts",
"reset:factory": "bun scripts/factory-reset.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@linkden/env": "workspace:*",
"dotenv": "^17.4.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@cloudflare/workers-types": "^4.20260415.1",
"@linkden/config": "workspace:*",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@vitejs/plugin-react": "^5",
"bcryptjs": "^3.0.3",
"jsdom": "^28.1.0",
"tailwindcss": "^4.2.2",
"turbo": "^2.9.6",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"packageManager": "bun@1.3.10",
"trustedDependencies": [
"esbuild",
"sharp",
"workerd"
]
}