This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
111 lines (111 loc) · 3.43 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
109
110
111
{
"name": "podium-gateway",
"version": "1.0.8-SNAPSHOT",
"description": "Podium Gateway Request Portal",
"private": true,
"cacheDirectories": [
"node_modules"
],
"dependencies": {
"@angular/animations": "^11.2.5",
"@angular/common": "11.2.5",
"@angular/compiler": "11.2.5",
"@angular/core": "11.2.5",
"@angular/forms": "11.2.5",
"@angular/localize": "11.2.5",
"@angular/platform-browser": "11.2.5",
"@angular/platform-browser-dynamic": "11.2.5",
"@angular/router": "11.2.5",
"@fortawesome/angular-fontawesome": "0.8.2",
"@fortawesome/fontawesome-svg-core": "1.2.35",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@ng-bootstrap/ng-bootstrap": "9.0.2",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"bootstrap": "4.6.0",
"font-awesome": "^4.7.0",
"material-design-icons-iconfont": "^6.1.0",
"ngx-bootstrap": "^6.2.0",
"ngx-infinite-scroll": "10.0.1",
"ngx-uploader": "11.0.0",
"ngx-webstorage": "7.0.1",
"rxjs": "6.6.6",
"swagger-ui-dist": "3.45.0",
"tslib": "2.1.0",
"zone.js": "0.11.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "11.1.1",
"@angular-builders/jest": "11.1.1",
"@angular-eslint/eslint-plugin": "2.0.2",
"@angular/cli": "11.2.4",
"@angular/compiler-cli": "11.2.5",
"@types/chai": "4.2.14",
"@types/chai-string": "1.4.2",
"@types/jest": "26.0.20",
"@types/mocha": "8.2.0",
"@types/node": "14.14.35",
"@types/selenium-webdriver": "4.0.11",
"@typescript-eslint/eslint-plugin": "4.18.0",
"@typescript-eslint/parser": "4.18.0",
"browser-sync": "2.26.14",
"browser-sync-webpack-plugin": "2.3.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-string": "1.5.0",
"concurrently": "6.0.0",
"copy-webpack-plugin": "6.4.1",
"eslint": "7.22.0",
"eslint-config-prettier": "8.1.0",
"eslint-webpack-plugin": "2.5.2",
"friendly-errors-webpack-plugin": "1.7.0",
"generator-jhipster": "7.0.0",
"husky": "4.3.8",
"jest": "26.6.3",
"jest-date-mock": "1.0.8",
"jest-junit": "12.0.0",
"jest-sonar-reporter": "2.0.0",
"lint-staged": "10.5.4",
"merge-jsons-webpack-plugin": "1.0.21",
"mocha": "8.2.1",
"ngx-translate-testing": "^5.1.0",
"prettier": "2.2.1",
"prettier-plugin-java": "1.0.2",
"prettier-plugin-packagejson": "2.2.10",
"protractor": "7.0.0",
"protractor-cucumber-framework": "^8.0.3",
"rimraf": "3.0.2",
"simple-progress-webpack-plugin": "1.1.2",
"ts-node": "9.1.1",
"typescript": "4.1.5",
"wait-on": "5.2.1",
"webdriver-manager": "12.1.8",
"webpack": "4.46.0",
"webpack-bundle-analyzer": "4.4.0",
"webpack-notifier": "1.13.0"
},
"engines": {
"node": ">=14.16.0"
},
"scripts": {
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"start": "npm run webpack:dev",
"webpack:build": "npm run clean-www && npm run webpack:build:dev",
"webpack:build:dev": "ng build",
"webpack:dev": "ng serve",
"webpack:prod": "ng build --prod",
"test": "ng test --coverage --log-heap-usage -w=2",
"test:watch": "npm run test -- --watch",
"clean-www": "rimraf target/www"
},
"config": {
"backend_port": "8080",
"default_environment": "prod",
"packaging": "jar"
},
"jestSonar": {
"reportPath": "target/test-results/jest",
"reportFile": "TESTS-results-sonar.xml"
}
}