-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.36 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
{
"name": "fe-lab",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"check-types": "turbo run check-types",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mjs,cjs,yml,yaml}\" --ignore-path .prettierignore --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mjs,cjs,yml,yaml}\" --ignore-path .prettierignore --cache",
"react": "turbo run dev --filter=react",
"typescript": "turbo run dev --filter=typescript",
"next": "turbo run dev --filter=next.js",
"blog-web": "turbo run dev --filter=@blog/web",
"blog-build": "turbo run build --filter=@blog/web",
"socket-server": "turbo run dev --filter=socket-server",
"socket": "concurrently \"pnpm socket-server\" \"pnpm react\"",
"clean": "pnpm clean:dist && pnpm clean:modules",
"clean:dist": "find . -name node_modules -prune -o -type d '(' -name dist -o -name .next -o -name out -o -name .turbo ')' -prune -exec rm -rf {} +",
"clean:modules": "find . -name node_modules -type d -prune -exec rm -rf {} +",
"prepare": "lefthook install"
},
"devDependencies": {
"lefthook": "^2.1.6",
"prettier": "^3.8.4",
"turbo": "^2.9.18",
"concurrently": "^10.0.3"
},
"packageManager": "pnpm@11.6.0",
"engines": {
"node": ">=24"
}
}