-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.61 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
{
"name": "exrt-application-form",
"version": "9.0.0",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"prepare": "npm run build",
"pretest": "npm run build",
"ts-compilation": "tsc -p .",
"start": "node ./dist/server/src/index.js",
"prod-build": "ng build --build-optimizer --vendor-chunk --aot --prod --named-chunks false --output-hashing all",
"build": "npm run prod-build && npm run ts-compilation",
"deploy": "gcloud app deploy",
"serve-client": "ng serve --aot --proxy-config proxy.conf.json",
"serve-server": "nodemon",
"ng": "ng",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular-devkit/build-optimizer": "^0.800.6",
"@angular-devkit/core": "^8.3.25",
"@angular/animations": "^8.2.14",
"@angular/cdk": "^8.2.3",
"@angular/common": "^8.2.14",
"@angular/compiler": "^8.2.14",
"@angular/core": "^8.2.14",
"@angular/forms": "^8.2.14",
"@angular/material": "^8.2.3",
"@angular/platform-browser": "^8.2.14",
"@angular/platform-browser-dynamic": "^8.2.14",
"@angular/router": "^8.2.14",
"@auth0/angular-jwt": "^2.1.2",
"@ng-bootstrap/ng-bootstrap": "^4.2.2",
"@types/express": "^4.17.3",
"@types/node": "^12.12.29",
"angular-6-clipboard": "^1.0.1",
"auth0-js": "^9.12.2",
"bignumber.js": "^9.0.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"chart.js": "^2.9.3",
"chartjs-plugin-annotation": "^0.5.7",
"core-js": "^3.6.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-jwt-authz": "^2.3.1",
"hammerjs": "^2.0.8",
"hoek": "^6.1.3",
"jquery": "^3.4.1",
"js-sha3": "^0.8.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.7.0",
"less": "^3.11.1",
"mongoose": "^5.9.3",
"morgan": "^1.9.1",
"ng2-charts": "^2.3.0",
"ng2-countdown-timer": "^1.2.2",
"ngx-papaparse": "^3.0.4",
"ngx-toastr": "^10.2.0",
"nodemon": "^2.0.13",
"npm": "^6.14.2",
"papaparse": "^5.1.1",
"path": "^0.12.7",
"popper.js": "^1.16.1",
"request": "^2.88.2",
"rxjs": "^6.5.4",
"ts-md5": "^1.2.7",
"tslib": "^1.11.1",
"webpack": "^4.42.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.24",
"@angular/cli": "^8.3.25",
"@angular/compiler-cli": "^8.2.14",
"@angular/language-service": "8.0.2",
"codelyzer": "^5.2.1",
"protractor": "^5.4.3",
"ts-node": "~8.3.0",
"tslint": "^5.20.1",
"typescript": "^3.4.5"
},
"heroku-run-build-script": true
}