forked from bikecoders/ngx-deploy-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "bikecoders",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"release": "nx version",
"commit": "cz",
"prepare": "husky install",
"sonar:init-server": "docker-compose up",
"sonar:analysis": "docker-compose run --rm sonar_cli"
},
"private": true,
"devDependencies": {
"@angular/cli": "^15.0.0",
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@jscutlery/semver": "2.29.3",
"@nrwl/cli": "15.8.9",
"@nrwl/devkit": "15.8.9",
"@nrwl/eslint-plugin-nx": "15.8.9",
"@nrwl/jest": "15.8.9",
"@nrwl/js": "15.8.9",
"@nrwl/linter": "15.8.9",
"@nrwl/nx-plugin": "15.8.9",
"@nrwl/workspace": "15.8.9",
"@swc-node/register": "^1.4.2",
"@swc/cli": "~0.1.55",
"@swc/core": "^1.2.173",
"@types/jest": "29.4.1",
"@types/node": "18.14.2",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"commitizen": "4.2.5",
"create-nx-workspace": "15.8.9",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "8.5.0",
"husky": "8.0.3",
"jest": "29.4.3",
"jest-environment-jsdom": "^29.4.1",
"jsonc-eslint-parser": "^2.1.0",
"nx": "15.8.9",
"prettier": "2.8.4",
"pretty-quick": "^3.1.3",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "~4.9.5"
},
"dependencies": {
"@swc/helpers": "~0.4.11",
"tslib": "^2.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}