-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.08 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
{
"name": "@bit-ocean/infra",
"description": "🚀 Built reliable infrastructure for Bit Ocean.",
"author": "Bruce Song <[email protected]> (https://github.com/recallwei/)",
"scripts": {
"build:packages": "pnpm nx run-many -t build -p @bit-ocean/* --parallel=10",
"lint:check": "pnpm nx run-many -t type:check cspell:check eslint:check prettier:check --all --parallel=10",
"type:check": "pnpm nx run-many -t type:check --all",
"cspell:check": "pnpm nx run-many -t cspell:check --all",
"eslint:check": "pnpm nx run-many -t eslint:check --all",
"eslint:fix": "pnpm nx run-many -t eslint:fix --all",
"prettier:check": "pnpm nx run-many -t prettier:check --all",
"prettier:fix": "pnpm nx run-many -t prettier:fix --all",
"release:generate": "pnpm changeset",
"release:version": "pnpm changeset version",
"release:publish": "pnpm build:packages && pnpm changeset publish",
"cz": "git-cz",
"prepare": "husky"
},
"devDependencies": {
"@bit-ocean/cli": "workspace:^",
"@bit-ocean/commitlint-config": "workspace:^",
"@bit-ocean/cspell": "workspace:^",
"@bit-ocean/eslint-config": "workspace:^",
"@bit-ocean/prettier-config": "workspace:^",
"@bit-ocean/tsconfig": "workspace:^",
"@changesets/cli": "^2.27.7",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@nx/js": "19.5.7",
"@nx/plugin": "19.5.7",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.6",
"@types/node": "^22.1.0",
"@vitest/browser": "^2.0.5",
"@vitest/ui": "^2.0.5",
"chromatic": "^11.7.0",
"commitizen": "^4.3.0",
"cspell": "^8.13.2",
"cz-git": "^1.9.4",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.8",
"nx": "19.5.7",
"prettier": "^3.3.3",
"tslib": "^2.6.3",
"tsup": "^8.2.4",
"type-fest": "^4.24.0",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vitest": "^2.0.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"engines": {
"node": ">=20"
},
"private": true,
"license": "MIT"
}