-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"private": true,
"packageManager": "pnpm@11.5.2",
"scripts": {
"build": "pnpm --filter=\"@fuf-stack/*\" build",
"commit": "lint-staged && git-cz",
"dev": "lerna run --parallel dev",
"fix": "eslint --debug --fix --ext .js packages || true && prettier --write \"packages/**/*\"",
"lint": "eslint --debug ./packages",
"test": "NODE_OPTIONS=\"--max-old-space-size=4096\" FORCE_COLOR=1 vitest --coverage $VITEST_EXTRA_OPTS"
},
"devDependencies": {
"@types/node": "24.13.0",
"@fuf-stack/eslint-config-fuf": "workspace:*",
"@fuf-stack/project-cli-tools": "workspace:*",
"@fuf-stack/typescript-config": "workspace:*",
"@fuf-stack/vitest-config": "workspace:*",
"@lerna-lite/cli": "5.3.0",
"ts-node": "10.9.2",
"typescript": "6.0.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-pnpm-scopes"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": {
"packages": [
"packages/*"
]
}
}