-
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) · 2.02 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.02 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": "stonefish-blog-monorepo",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.22.0",
"description": "StoneFish.blog - 现代化全栈博客系统 Monorepo",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "pnpm --parallel --bail=false --filter \"./apps/**\" dev",
"build": "pnpm --recursive --filter \"./packages/**\" build && pnpm --recursive --filter \"./apps/**\" build",
"build:fast": "pnpm --recursive --filter \"./packages/**\" build && pnpm --parallel --filter \"./apps/**\" build:fast",
"build:parallel": "pnpm --recursive --filter \"./packages/**\" build && pnpm --parallel --filter \"./apps/**\" build",
"typecheck": "pnpm --parallel --filter \"./apps/**\" typecheck",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --config prettier.config.js --ignore-path .prettierignore --write \"**/*.{js,ts,vue,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"watch:packages": "tsx scripts/watch-packages.ts",
"clean": "tsx scripts/clean.ts",
"clean:build": "tsx scripts/clean.ts --build",
"clean:cache": "tsx scripts/clean.ts --cache",
"clean:all": "tsx scripts/clean.ts --all",
"check:build": "tsx scripts/check-build.ts",
"analyze:build": "tsx scripts/analyze-build-time.ts",
"build:timing": "tsx scripts/build-timing.ts",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@stonefish/eslint-config-custom": "workspace:*",
"@stonefish/tsconfig": "workspace:*",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.10",
"chokidar": "^4.0.3",
"eslint": "^9.39.1",
"eslint-plugin-format": "^1.0.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
},
"pnpm": {
"overrides": {
"@vueuse/core": "^13.9.0",
"vite": "npm:rolldown-vite@latest"
}
}
}