-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.02 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.02 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
79
{
"name": "@jnxplus/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"e2e": "nx e2e",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"**/*": "prettier --write --ignore-unknown"
},
"private": false,
"dependencies": {
"@nx/devkit": "22.6.5",
"@swc/helpers": "0.5.21",
"create-nx-workspace": "22.6.5",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-angular": "^20.5.0",
"@nx/eslint": "22.6.5",
"@nx/eslint-plugin": "22.6.5",
"@nx/jest": "22.6.5",
"@nx/js": "22.6.5",
"@nx/node": "22.6.5",
"@nx/plugin": "22.6.5",
"@nx/workspace": "22.6.5",
"@prettier/plugin-xml": "^3.4.1",
"@swc-node/register": "1.11.1",
"@swc/cli": "0.8.1",
"@swc/core": "1.15.26",
"@swc/wasm": "~1.15.26",
"@types/jest": "30.0.0",
"@types/kill-port": "^2.0.3",
"@types/node": "25.6.0",
"@types/tcp-port-used": "^1.0.4",
"@types/tmp": "^0.2.6",
"@types/xmldoc": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.2",
"axios": "^1.15.0",
"chalk": "4.1.0",
"enquirer": "^2.4.1",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"husky": "^9.1.7",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"jest-environment-node": "^30.2.0",
"jest-util": "30.3.0",
"jsonc-eslint-parser": "^3.1.0",
"kill-port": "^2.0.1",
"lint-staged": "^16.4.0",
"nx": "22.6.5",
"prettier": "^3.2.4",
"prettier-plugin-java": "2.5.0",
"smol-toml": "^1.6.1",
"tcp-port-used": "^1.0.2",
"tmp": "^0.2.5",
"tree-kill": "1.2.2",
"ts-jest": "29.4.9",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"typescript-eslint": "^8.58.2",
"verdaccio": "6.5.0",
"xmldoc": "^2.0.3",
"yargs": "17.7.2"
},
"nx": {
"includedScripts": []
}
}