-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.08 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
{
"name": "clash-speedtest",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "turbo run dev",
"dev:both": "turbo run dev",
"dev:frontend": "turbo run dev --filter=frontend",
"dev:backend": "cd backend && npm run dev",
"build": "turbo run build",
"build:frontend": "turbo run build --filter=frontend",
"build:backend": "cd backend && npm run build",
"docker:build": "cd backend && npm run docker:build && cd ../frontend && docker build -t clash-frontend .",
"test": "turbo run test",
"lint": "turbo run lint",
"lint:frontend": "cd frontend && pnpm lint",
"lint:backend": "cd backend && npm run lint",
"format": "turbo run format",
"format:frontend": "cd frontend && pnpm format",
"format:backend": "cd backend && npm run format",
"clean": "turbo run clean && rm -rf node_modules",
"clean:cache": "rm -rf .turbo",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@biomejs/biome": "^2.1.2",
"turbo": "^2.5.5"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=18.0.0"
}
}