-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.01 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.01 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
{
"name": "@we-mobius/mobius-monorepo",
"type": "module",
"version": "0.0.0",
"private": false,
"packageManager": "pnpm@8.15.6",
"author": {
"name": "kongxiangyan",
"email": "kongxiangyan@planetmatrix.tech",
"url": "https://cigaret.world/"
},
"license": "GPL-3.0",
"scripts": {
"prepare": "lefthook install",
"cz": "pnpm exec cz",
"dev:all": "pnpm exec nx run-many --target=dev --all --parallel",
"dev:affected": "pnpm exec nx affected --target=dev --all --parallel",
"test:all": "pnpm exec nx run-many --target=test --all --parallel",
"test:affected": "pnpm exec nx affected --target=test --all --parallel",
"build:all": "pnpm exec nx run-many --target=build --all --parallel",
"build:affected": "pnpm exec nx affected --target=build --all --parallel",
"graph:all": "pnpm exec nx graph",
"graph:watch": "pnpm exec nx graph --watch",
"nx:reset": "pnpm exec nx reset",
"type-check:all": "pnpm exec nx run-many --target=type-check --all --parallel",
"lint:all": "pnpm exec nx run-many --target=lint --all --parallel",
"lint": "pnpm exec eslint .",
"lint:inspect": "pnpm eslint-config-inspector",
"lint:fix": "pnpm exec eslint . --fix --ignore-path .gitignore",
"change:add": "pnpm exec changeset add",
"change:version": "pnpm exec changeset version",
"change:status": "pnpm exec changeset status",
"change:publish": "pnpm exec changeset publish"
},
"dependencies": {
"@we-mobius/mobius-utils": "^1.8.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@changesets/config": "^3.0.0",
"@commitlint/cli": "^19.2.1",
"@eslint/config-inspector": "^0.4.6",
"@nx/devkit": "18.2.4",
"@nx/js": "18.2.4",
"@types/node": "18.16.9",
"@we-mobius/commitizen": "workspace:*",
"@we-mobius/eslint-config": "workspace:*",
"@we-mobius/tsconfig": "workspace:*",
"eslint": "^9.0.0",
"lefthook": "^1.6.10",
"nx": "18.2.4",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}