-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.66 KB
/
package.json
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
59
60
61
62
63
64
65
{
"private": true,
"name": "codesmith-monorepo",
"description": "The meta-framework suite designed from scratch for frontend-focused modern web development.",
"homepage": "https://modernjs.dev",
"bugs": "https://github.com/web-infra-dev/codesmith/issues",
"repository": "web-infra-dev/codesmith",
"license": "MIT",
"keywords": [
"react",
"framework",
"modern",
"modern.js"
],
"scripts": {
"new": "modern new",
"setup": "npm run reset && pnpm install --ignore-scripts",
"reset": "pnpm -r exec rm -rf ./node_modules",
"test": "pnpm run --filter './packages/**' test --detectOpenHandles",
"prepare": "pnpm run --filter './packages/**' prepare",
"lint": "biome check",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"release": "modern release --ignore-scripts",
"gen-release-note": "modern gen-release-note"
},
"engines": {
"node": ">=14.17.6",
"pnpm": ">=8.0.0"
},
"packageManager": "[email protected]",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true"
]
},
"workspaces": {
"packages": [
"apps/*",
"examples/*",
"services/*",
"features/*",
"packages/*",
"packages/api/*",
"packages/easy-form/*"
]
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@modern-js/monorepo-tools": "2.58.0",
"@modern-js/tsconfig": "2.58.0"
}
}