forked from angular-schule/ngx-deploy-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
70 lines (70 loc) · 1.69 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
{
"name": "bikecoders",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx build ngx-deploy-npm",
"test": "nx test ngx-deploy-npm",
"release": "nx version ngx-deploy-npm",
"commit": "cz",
"prepare": "husky install",
"sonar:init-server": "docker-compose up",
"sonar:analysis": "docker-compose run --rm sonar_cli"
},
"private": true,
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@eslint/js": "^9.8.0",
"@jscutlery/semver": "5.3.1",
"@nx/devkit": "20.0.6",
"@nx/eslint": "20.0.6",
"@nx/eslint-plugin": "20.0.6",
"@nx/jest": "20.0.6",
"@nx/js": "20.0.6",
"@nx/plugin": "20.0.6",
"@nx/workspace": "20.0.6",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"commitizen": "4.3.1",
"create-nx-workspace": "20.0.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "9.0.0",
"husky": "8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nx": "20.0.6",
"prettier": "2.8.4",
"pretty-quick": "^3.1.3",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"typescript-eslint": "^8.0.0",
"verdaccio": "^5.0.4"
},
"dependencies": {
"tslib": "^2.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nx": {
"includedScripts": []
},
"overrides": {
"@jscutlery/semver": {
"@nx/devkit": "^20.0.0"
}
}
}