-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.62 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
{
"name": "@diamir/nx-skeleton",
"private": true,
"scripts": {
"nx": "nx",
"build": "nx run-many --target build",
"build:one": "nx build",
"build:nocache": "nx run-many --target build --skip-nx-cache",
"manifest:update": "nx run-many --target updateManifest",
"test": "nx run-many --target test --parallel 10",
"test:one": "nx test --project",
"test:e2e": "nx run-many --target test -c e2e --parallel 10",
"test:e2e:one": "nx test -c e2e --project",
"test:cov": "nx run-many --target test -c cov --parallel 10",
"test:cov:one": "nx test -c cov --project",
"lint": "biome check",
"lint:check": "nx run-many --parallel 10 --target lint",
"lint:fix": "nx run-many --parallel 10 --target lint -c fix"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@nestjs/testing": "11.1.11",
"@nx/devkit": "22.3.3",
"@nx/jest": "22.3.3",
"@nx/js": "22.3.3",
"@nx/plugin": "22.3.3",
"@nx/workspace": "22.3.3",
"@pnpm/exportable-manifest": "1000.3.0",
"@pnpm/read-project-manifest": "1001.2.3",
"@pnpm/workspace.read-manifest": "1000.2.9",
"@swc-node/register": "1.11.1",
"@swc/cli": "0.7.9",
"@swc/core": "1.15.8",
"@swc/helpers": "0.5.18",
"@types/jest": "30.0.0",
"@types/node": "22.17.0",
"jest": "30.2.0",
"jest-environment-node": "30.2.0",
"lint-staged": "16.2.7",
"nx": "22.3.3",
"simple-git-hooks": "2.13.1",
"ts-jest": "29.4.6",
"tslib": "2.8.1",
"typescript": "5.9.3",
"yaml": "2.8.2"
},
"simple-git-hooks": {
"pre-commit": "npm exec lint-staged"
},
"volta": {
"node": "22.16.0"
}
}