forked from AlexPshul/nxazure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "nxazure",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"build:all": "nx run-many --target=build --all",
"test": "nx test",
"test:all": "nx run-many --target=test --all",
"e2e:all": "nx run-many --target=e2e --all",
"prepare": "is-ci || husky install",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@nx/devkit": "16.1.3",
"@nx/eslint-plugin": "16.1.3",
"@nx/jest": "16.1.3",
"@nx/js": "16.1.3",
"@nx/linter": "16.1.3",
"@nx/plugin": "16.1.3",
"@nx/workspace": "16.1.3",
"@swc-node/register": "^1.4.2",
"@swc/cli": "0.1.62",
"@swc/core": "^1.2.173",
"@types/jest": "29.4.0",
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "29.4.3",
"jest-environment-jsdom": "29.4.3",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^13.1.0",
"nx": "16.1.3",
"prettier": "^2.6.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tsc-files": "^1.1.3",
"typescript": "5.0.4"
},
"dependencies": {
"@swc/helpers": "0.5.1",
"glob": "^10.2.2",
"tree-kill": "^1.2.2",
"tslib": "^2.3.0"
}
}