-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
80 lines (80 loc) · 2.06 KB
/
package.json
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
80
{
"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": "20.4.6",
"@swc/helpers": "0.5.15",
"create-nx-workspace": "20.4.6",
"flat-cache": "^6.1.6",
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-angular": "^19.7.1",
"@nx/eslint": "20.4.6",
"@nx/eslint-plugin": "20.4.6",
"@nx/jest": "20.4.6",
"@nx/js": "20.4.6",
"@nx/node": "20.4.6",
"@nx/plugin": "20.4.6",
"@nx/workspace": "20.4.6",
"@prettier/plugin-xml": "^3.4.1",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.6.0",
"@swc/core": "1.11.4",
"@swc/wasm": "~1.11.1",
"@types/flat-cache": "^2.0.2",
"@types/jest": "29.5.14",
"@types/kill-port": "^2.0.3",
"@types/node": "22.13.5",
"@types/tcp-port-used": "^1.0.4",
"@types/tmp": "^0.2.6",
"@types/xmldoc": "^1.1.9",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"axios": "^1.8.1",
"chalk": "4.1.0",
"enquirer": "^2.4.1",
"eslint": "9.21.0",
"eslint-config-prettier": "9.1.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"kill-port": "^2.0.1",
"lint-staged": "^15.4.3",
"nx": "20.4.6",
"prettier": "^3.2.4",
"prettier-plugin-java": "2.5.0",
"smol-toml": "^1.3.1",
"tcp-port-used": "^1.0.2",
"tmp": "^0.2.3",
"tree-kill": "1.2.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"verdaccio": "^5.32.2",
"typescript-eslint": "^8.25.0",
"xmldoc": "^1.3.0",
"yargs": "^17.7.2"
},
"nx": {
"includedScripts": []
}
}