-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
124 lines (124 loc) · 3.82 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "gear3",
"version": "3.0.0",
"description": "Next Iteration of the GEAR portal to latest tech stack of 2020",
"main": "server.js",
"engines": {
"node": ">=18.14.2"
},
"scripts": {
"ng": "ng",
"clean": "npx rimraf node_modules",
"start": "concurrently --kill-others \"npm run serve-api\" \"npm run serve\"",
"serve": "ng serve --proxy-config proxy.conf.json",
"build-prod": "ng build --output-path=public --configuration=production",
"build-stage": "ng build --output-path=public --configuration=staging",
"build-dev": "ng build --output-path=public --configuration=development",
"serve-api": "node server.js",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"author": "IDRA - Enterprise Architecture Group",
"dependencies": {
"@angular/animations": "^18.0.6",
"@angular/cdk": "^18.0.6",
"@angular/common": "^18.0.6",
"@angular/compiler": "^18.0.6",
"@angular/core": "^18.0.6",
"@angular/forms": "^18.0.6",
"@angular/localize": "^18.0.6",
"@angular/material": "^18.0.6",
"@angular/platform-browser": "^18.0.6",
"@angular/platform-browser-dynamic": "^18.0.6",
"@angular/router": "^18.0.6",
"@babel/core": "^7.23.2",
"@babel/traverse": "^7.23.2",
"@ng-select/ng-select": "^13.4.1",
"@node-saml/passport-saml": "^4.0.4",
"@swimlane/ngx-charts": "^20.5.0",
"@uswds/uswds": "3.8.1",
"adjust-sourcemap-loader": "^4.0.0",
"async": "^2.6.4",
"base-64": "^0.1.0",
"body-parser": "^1.20.3",
"bootstrap": "^4.6.0",
"bootstrap-datepicker": "^1.9.0",
"bootstrap-table": "^1.18.3",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^10.2.4",
"cors": "^2.8.5",
"d3": "^7.9.0",
"d3-color": "^3.1.0",
"d3-interpolate": "^3.0.1",
"d3-sankey": "^0.12.3",
"d3-scale-chromatic": "^3.0.0",
"d3-transition": "^3.0.1",
"dotenv": "^8.6.0",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"express-rate-limit": "^6.7.0",
"fast-csv": "^4.3.6",
"follow-redirects": "^1.14.7",
"google-auth-library": "^9.14.1",
"googleapis": "^114.0.0",
"jexl": "^2.3.0",
"jquery": "^3.6.0",
"json-diff": "^1.0.6",
"json-schema": "^0.4.0",
"jsonwebtoken": "^8.5.1",
"jspdf-autotable": "^3.5.20",
"jwt-decode": "^3.1.2",
"ldapjs": "^2.3.1",
"make-fetch-happen": "^10.1.2",
"mysql2": "^3.9.7",
"ng-sidebar-v3": "^18.0.0",
"ng2-pdf-viewer": "^10.2.2",
"ngx-cookie-service": "^18.0.0",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.0",
"npm": "^10.5.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"path-to-regexp": "^0.1.10",
"pdfjs-dist": "^2.16.105",
"readline": "^1.3.0",
"rxjs": "~6.5.4",
"sqlstring": "^2.3.3",
"tableexport.jquery.plugin": "1.20.1",
"tslib": "^2.0.0",
"webpack": "^5.91.0",
"webpack-dev-server": "^5.0.4",
"xmlhttprequest": "^1.8.0",
"xmlhttprequest-ssl": "^1.6.3",
"zone.js": "^0.14.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.7",
"@angular/cli": "^18.0.7",
"@angular/compiler-cli": "^18.0.6",
"@types/d3": "^5.16.4",
"@types/d3-sankey": "^0.11.2",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.10",
"@types/jquery": "^3.5.16",
"@types/node": "^12.20.33",
"codelyzer": "^6.0.0",
"jasmine-core": "^3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"prettier": "^3.2.5",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"tslint": "~6.1.0",
"typescript": "^5.4.5",
"webpack-bundle-analyzer": "^4.6.1"
}
}