-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "nxazure",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"build:all": "nx run-many --target=build --all",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" nx test",
"test:all": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" nx run-many --target=test --all",
"e2e:all": "nx run-many --target=e2e --all",
"prepare": "is-ci || husky",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@eslint/eslintrc": "^2.1.1",
"@nx/devkit": "20.0.10",
"@nx/eslint": "20.0.10",
"@nx/eslint-plugin": "20.0.10",
"@nx/jest": "20.0.10",
"@nx/js": "20.0.10",
"@nx/plugin": "20.0.10",
"@nx/workspace": "20.0.10",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.26",
"@types/jest": "29.5.13",
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"cross-env": "^7.0.3",
"eslint": "9.11.0",
"eslint-config-prettier": "9.1.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.2.10",
"nx": "20.0.10",
"prettier": "^3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsc-files": "^1.1.4",
"typescript": "^5.6.2",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"@swc/helpers": "0.5.13",
"glob": "^11.0.0",
"tree-kill": "^1.2.2",
"tslib": "^2.7.0"
}
}