This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
68 lines (68 loc) · 1.73 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
{
"name": "cicdgen",
"private": true,
"workspaces": [
"packages/cli",
"packages/schematics"
],
"devDependencies": {
"lerna": "^3.20.2",
"@types/shelljs": "^0.8.3",
"@types/yargs": "^15.0.4",
"prettier": "^2.0.2",
"@types/diff": "^4.0.2",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.4",
"@types/node-fetch": "^2.5.4",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.6",
"ts-jest": "^25.3.0",
"ts-node": "^8.5.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.1.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8"
},
"dependencies": {
"@angular-devkit/schematics-cli": "^0.901.0",
"@devonfw/cicdgen-schematics": "~1.6.0",
"@types/node": "^13.1.4",
"shelljs": "^0.8.3",
"typescript": "~3.8.3",
"yargs": "^15.1.0",
"@angular-devkit/core": "^9.1.0",
"@angular-devkit/schematics": "^8.3.21",
"diff": "^4.0.2",
"node-fetch": "^2.6.0"
},
"version": "1.6.3",
"scripts": {
"cm": "git-cz",
"build": "lerna run build",
"prepublish": "npm run build",
"build:prod": "lerna run build:prod",
"lint": "lerna run lint",
"format": "lerna run format"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}