-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.22 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.22 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": "@d-zero/frontend-env",
"description": "D-ZERO Frontend Developer's Environment",
"repository": "https://github.com/d-zero-dev/frontend-env.git",
"author": "D-ZERO Co., Ltd.",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"build": "lerna run build --scope=@d-zero/builder --scope=@d-zero/check-frontend-env --scope=@d-zero/custom-components",
"dev": "lerna run dev",
"test": "vitest run --test-timeout 60000",
"lint": "run-s lint:eslint lint:prettier lint:textlint lint:cspell",
"lint:cspell": "npx cspell --no-progress --show-suggestions \"**\"",
"lint:eslint": "npx eslint --fix \"./{*,**/*}.{js,cjs,mjs,ts,tsx}\"",
"lint:prettier": "npx prettier --write \"{*,./**/*}{.{md,mdc,mdx,js,jsx,ts,tsx,css,pug,html},*rc}\" \"!**/{dist,storybook-static}/**/*\"",
"lint:textlint": "npx textlint --fix \"{*,./**/*}.{md,mdc}\" && npx textlint \"{*,./**/*}.{md,mdc}\"",
"storybook": "lerna run storybook --scope=@d-zero/custom-components",
"release": "lerna publish --exact --conventional-commits --conventional-graduate",
"release:alpha:latest": "lerna publish --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"release:beta:latest": "lerna publish --exact --force-publish --conventional-commits --conventional-prerelease --preid beta",
"release:next": "lerna publish --dist-tag next --exact --force-publish --conventional-commits --conventional-prerelease --preid alpha",
"postinstall": "husky",
"commit": "npx cz",
"co": "npx cz",
"update": "yarn upgrade-interactive"
},
"workspaces": [
"packages/@d-zero/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@d-zero/cz-config"
}
},
"devDependencies": {
"@d-zero/commitlint-config": "5.0.0",
"@d-zero/cspell-config": "5.0.0",
"@d-zero/eslint-config": "5.0.0",
"@d-zero/lint-staged-config": "5.0.0",
"@d-zero/prettier-config": "5.0.0",
"@d-zero/textlint-config": "5.0.0",
"@d-zero/tsconfig": "1.0.0",
"husky": "9.1.7",
"lerna": "9.0.4",
"npm-run-all2": "8.0.4",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"packageManager": "yarn@4.12.0",
"volta": {
"node": "24.14.0",
"yarn": "4.12.0"
}
}