-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.4 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.4 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
59
60
61
62
63
64
{
"name": "nx-plugins",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"fmt:check": "pnpm nx format:check --all",
"fmt": "pnpm nx format --all",
"lint": "pnpm nx affected -t lint --output-style=stream",
"lint:ci": "pnpm run lint --configuration=ci",
"lint:all": "pnpm nx run-many -t lint --output-style=stream --skip-nx-cache",
"build": "pnpm nx affected -t build --output-style=stream",
"build:ci": "pnpm run build --configuration=ci",
"build:all": "pnpm nx run-many -t build --output-style=stream --skip-nx-cache",
"test": "pnpm nx affected -t test --output-style=stream",
"test:ci": "pnpm run test --configuration=ci",
"test:all": "pnpm nx run-many -t test --output-style=stream --skip-nx-cache",
"e2e": "pnpm nx affected-e2e",
"e2e:all": "pnpm nx run-many-e2e",
"ci": "pnpm fmt:check && pnpm lint:ci && pnpm build:ci && pnpm test:ci && pnpm e2e",
"ci:test": "pnpm fmt:check && pnpm lint:ci && pnpm build:ci && pnpm test:ci",
"prepare": "husky install"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.1",
"@commitlint/config-nx-scopes": "^18.6.1",
"@commitlint/types": "^18.6.1",
"@nx/eslint": "18.1.2",
"@nx/eslint-plugin": "18.1.2",
"@nx/jest": "18.1.2",
"@nx/js": "18.1.2",
"@nx/plugin": "18.1.2",
"@swc-node/register": "1.9.0",
"@swc/cli": "~0.3.10",
"@swc/core": "1.4.6",
"@types/jest": "^29.5.12",
"@types/node": "20.11.25",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"@verdaccio/types": "^10.8.0",
"commitizen": "^4.3.0",
"commitlint": "^19.0.3",
"cz-git": "^1.9.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nx": "18.1.2",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.2",
"verdaccio": "^5.29.2"
},
"dependencies": {
"@nx/devkit": "18.1.2",
"@swc/helpers": "0.5.6",
"create-nx-workspace": "18.0.8",
"tslib": "^2.6.2"
}
}