-
-
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": "root",
"private": true,
"workspaces": [
"packages/*"
],
"version": "independent",
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"commitizen": "^4.3.0",
"conventional-changelog": "^7.1.1",
"conventional-changelog-cli": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"lerna": "^9.0.0",
"lerna-changelog": "^2.2.0",
"lint-staged": "^16.2.4",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vite": "^7.1.10",
"vitest": "^3.2.4"
},
"scripts": {
"test:ready": "npx lerna exec --since origin/main -- npm run test:ready",
"test": "npx lerna exec --since origin/main -- npm run test",
"test:coverage": "npx lerna exec --since origin/main -- npm run test:coverage",
"code:check:ci": "npx lerna exec --since origin/main -- npm run code:check:ci",
"build:shared": "npx lerna exec --scope=@nexus-ioc/shared -- npm run build",
"build:ioc": "npx lerna exec --scope=@nexus-ioc/core -- npm run build",
"build:testing": "npx lerna exec --scope=@nexus-ioc/testing -- npm run build",
"build:cli": "npx lerna exec --scope=@nexus-ioc/cli -- npm run build",
"build:all": "npm run build:shared && npm run build:ioc && npm run build:testing && npm run build:cli",
"build:ci": "npm run build:shared && npm run build:ioc && npm run build:testing && npm run build:cli",
"format": "npx @biomejs/biome format --write .",
"format:check": "npx @biomejs/biome format .",
"lint": "npx @biomejs/biome lint --write .",
"lint:check": "npx @biomejs/biome lint .",
"check": "npx @biomejs/biome check --write .",
"check:ci": "npx @biomejs/biome ci .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "cz",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"npx @biomejs/biome check --write --unsafe"
]
}
}