-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 3.44 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
{
"name": "mdm-explorer",
"version": "1.0.0-SNAPSHOT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:watch": "ng test --watch",
"test-clearCache": "ng test --clear-cache",
"test-with-coverage": "ng test --coverage",
"test-with-coverage-serial": "ng test --coverage --run-in-band",
"eslint": "tsc --noEmit && eslint . --ext ts --fix",
"eslint-nofix": "tsc --noEmit && eslint . --ext ts",
"eslint-nofix-quiet": "tsc --noEmit && eslint . --ext ts --quiet",
"eslint-report": "eslint . --ext ts --format checkstyle -o eslint/eslint_report.xml",
"eslint-junit": "eslint . --ext ts -f ./node_modules/eslint-junit/index.js",
"license-check": "license-check-and-add -f license-check.json",
"license-check add": "npm run license-check add",
"dist": "ng build --configuration production --output-path=dist/mdm-explorer-$npm_package_version && npm run dist-archive",
"dist-archive": "tar zcvf dist/mdm-explorer-${npm_package_version}.tgz -C dist mdm-explorer-$npm_package_version",
"sonar": "sonar-scanner -Dsonar.projectVersion=$npm_package_version",
"pr-checks": "npm run license-check check && npm run eslint && npm run test"
},
"private": true,
"eslint-junit": {
"suiteName": "eslint tests",
"output": "./eslint/eslint-junit.xml"
},
"dependencies": {
"@angular-material-extensions/password-strength": "11.0.1",
"@angular/animations": "14.2.12",
"@angular/cdk": "14.2.7",
"@angular/common": "14.2.12",
"@angular/compiler": "14.2.12",
"@angular/core": "14.2.12",
"@angular/forms": "14.2.12",
"@angular/material": "14.2.7",
"@angular/material-moment-adapter": "14.2.7",
"@angular/platform-browser": "14.2.12",
"@angular/platform-browser-dynamic": "14.2.12",
"@angular/router": "14.2.12",
"@fortawesome/fontawesome-free": "6.3.0",
"@maurodatamapper/mdm-resources": "5.3.0",
"@maurodatamapper/sde-resources": "0.0.1",
"chart.js": "3.8.0",
"moment": "2.29.4",
"ng2-charts": "3.0.11",
"ngx-clipboard": "15.0.1",
"ngx-json-viewer": "3.0.2",
"ngx-toastr": "14.2.1",
"primeng": "14.2.3",
"rxjs": "7.4.0",
"tinycolor2": "1.6.0",
"tslib": "2.3.1",
"uuid": "^9.0.0",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-builders/custom-webpack": "14.1.0",
"@angular-builders/jest": "14.1.0",
"@angular-devkit/build-angular": "14.2.10",
"@angular-eslint/eslint-plugin": "14.4.0",
"@angular-eslint/eslint-plugin-template": "14.4.0",
"@angular/cli": "14.2.10",
"@angular/compiler-cli": "14.2.12",
"@types/jest": "27.5.2",
"@types/node": "12.20.54",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "8.39.0",
"eslint-config-prettier": "6.12.0",
"eslint-junit": "1.0.1",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsdoc": "48.0.6",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.0.0",
"jest": "28.1.3",
"jest-html-reporter": "3.7.0",
"jest-junit": "15.0.0",
"jest-marbles": "3.0.3",
"jest-preset-angular": "12.2.6",
"jest-sonar": "0.2.15",
"license-check-and-add": "4.0.5",
"ng-mocks": "14.6.0",
"sonarqube-scanner": "2.9.1",
"ts-jest": "28.0.8",
"typescript": "4.8.4",
"webpack": "5.76.0"
}
}