-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.32 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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm turbo build",
"commit": "lint-staged && git-cz",
"dev": "lerna run --parallel dev",
"fix": "eslint --debug --fix --ext .js --ignore-path .gitignore packages || true && prettier --write \"packages/**/*\"",
"lint": "eslint --debug --ignore-path .gitignore ./packages",
"test": "NODE_OPTIONS=\"--max-old-space-size=4096\" FORCE_COLOR=1 vitest --coverage $VITEST_EXTRA_OPTS",
"test:storybook": "pnpm exec playwright install chromium && test-storybook --coverage --config-dir packages/config/storybook-config/.storybook --maxWorkers=4 && nyc report --reporter=lcov -t coverage/storybook --report-dir coverage/storybook",
"turbo": "TURBO_TELEMETRY_DISABLED=1 FORCE_COLOR=1 turbo --cache-dir ./.turbo-cache --color --no-daemon"
},
"devDependencies": {
"@fuf-stack/eslint-config-fuf": "0.11.0",
"@fuf-stack/project-cli-tools": "1.0.0",
"@fuf-stack/vitest-config": "0.1.12",
"@types/node": "22.10.1",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"workspaces": [
"packages/*"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional",
"@commitlint/config-pnpm-scopes"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}