forked from angular-schule/ngx-deploy-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 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
{
"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.7.1",
"@nx/devkit": "21.4.1",
"@nx/eslint": "21.4.1",
"@nx/eslint-plugin": "21.4.1",
"@nx/jest": "21.4.1",
"@nx/js": "21.4.1",
"@nx/plugin": "21.4.1",
"@nx/workspace": "21.4.1",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/jest": "30.0.0",
"@types/node": "^20.14.8",
"commitizen": "4.3.1",
"create-nx-workspace": "21.4.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "10.1.2",
"husky": "8.0.3",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"nx": "21.4.1",
"prettier": "2.8.4",
"pretty-quick": "^3.1.3",
"ts-jest": "29.4.1",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"typescript-eslint": "8.35.1",
"verdaccio": "6.1.2",
"jest-util": "30.0.5"
},
"dependencies": {
"tslib": "^2.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"nx": {
"includedScripts": []
}
}