-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.68 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@sourceloop/workflows-creator",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/sourcefuse/workflows-creator"
},
"author": "Sourcefuse",
"license": "MIT",
"private": false,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"prettier:cli": "prettier \"**/*.ts\" \"**/*.js\" \"**/*.html\"",
"prettier:check": "npm run prettier:cli -- --check",
"prettier:fix": "npm run prettier:cli -- --write",
"pretest": "npm run lint",
"build:docs": "rm -rf ./docs && typedoc --out docs && cp projects/workflows-creator/README.md ./README.md",
"workflowBuild": "ng build workflows-creator && cp -r projects/workflows-creator/src/assets dist/workflows-creator/",
"test": "ng test --no-watch",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI --code-coverage",
"lint": "ng lint",
"prepare": "husky install",
"clean-deps": "lerna clean --yes && lerna exec --no-private \"npm install --ignore-scripts --package-lock-only --no-audit\""
},
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/elements": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@ng-select/ng-select": "^8.0.0",
"@popperjs/core": "^2.11.6",
"@types/estree": "^1.0.0",
"bpmn-moddle": "^8.0.0",
"lerna": "^5.1.5",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"ng-multiselect-dropdown": "^0.3.9",
"ngx-popperjs": "^13.3.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.10",
"@angular-eslint/builder": "13.5.0",
"@angular-eslint/eslint-plugin": "13.5.0",
"@angular-eslint/eslint-plugin-template": "13.5.0",
"@angular-eslint/schematics": "13.5.0",
"@angular-eslint/template-parser": "13.5.0",
"@angular/cli": "~13.3.10",
"@angular/compiler-cli": "~13.3.0",
"@angular/elements": "~13.3.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/bpmn-moddle": "^5.1.6",
"@types/jasmine": "~3.10.0",
"@types/lodash": "^4.14.182",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"bpmn-moddle": "^8.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.9.2",
"cz-customizable-ghooks": "^2.0.0",
"eslint": "^8.17.0",
"husky": "^8.0.3",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lodash": "^4.17.21",
"ng-packagr": "^13.0.0",
"ngx-popperjs": "^13.3.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"typedoc": "^0.23.24",
"typedoc-umlclass": "^0.7.0",
"typescript": "~4.6.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}