-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.18 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "jscutlery",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "jest --watch",
"lint": "nx workspace-lint && nx lint",
"e2e": "nx e2e",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph",
"help": "nx help",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"postinstall": "husky install"
},
"private": true,
"devDependencies": {
"@angular-devkit/schematics": "19.2.19",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@nx/devkit": "23.1.0",
"@nx/eslint-plugin": "23.1.0",
"@nx/jest": "23.1.0",
"@nx/js": "23.1.0",
"@nx/plugin": "23.1.0",
"@nx/workspace": "23.1.0",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.8",
"@types/jest": "30.0.0",
"@types/node": "22.19.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"all-contributors-cli": "^6.19.0",
"dotenv": "16.6.1",
"eslint": "9.14.0",
"eslint-config-prettier": "10.1.8",
"husky": "^9.0.0",
"jest": "30.3.0",
"jest-extended": "^4.0.0",
"jest-util": "30.3.0",
"ngx-deploy-npm": "^8.0.0",
"nx": "23.1.0",
"prettier": "3.6.2",
"tmp": "^0.2.1",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"tslib": "^2.3.1",
"tslint": "6.1.3",
"typescript": "6.0.3"
},
"pnpm": {
"overrides": {
"rxjs": "7.8.2",
"@types/conventional-changelog-core": "4.2.8"
},
"onlyBuiltDependencies": [
"@swc/core",
"nx",
"unrs-resolver"
]
},
"packageManager": "pnpm@10.11.0"
}