-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.62 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.62 KB
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
{
"name": "frontend",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --source-map=true --poll 2000",
"start-fast": "ng serve --source-map=false --poll 2000",
"hmr": "ng serve --configuration hmr",
"build": "ng build --verbose --aot",
"build-prod": "ng build --prod",
"build-demo": "ng build --prod --configuration demo",
"build-test": "ng build --prod --configuration test",
"test": "ng test",
"lint": "ng lint",
"amplify-modelgen": "node amplify/scripts/amplify-modelgen.js",
"amplify:query": "cd amplify/backend/function/query && ./build.sh",
"amplify:sqsquery": "cd amplify/backend/function/sqsquery && ./build.sh",
"amplify:api": "cd amplify/backend/function/api && ./build.sh",
"amplify-push": "node amplify/scripts/amplify-push.js"
},
"private": true,
"dependencies": {
"@amcharts/amcharts4": "^4.10.19",
"@amcharts/amcharts4-fonts": "^4.0.1",
"@amcharts/amcharts4-geodata": "^4.1.20",
"@angular/animations": "^11.2.14",
"@angular/cdk": "^11.2.13",
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/forms": "^11.2.14",
"@angular/material": "^11.2.13",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@angular/router": "^11.2.14",
"@asymmetrik/ngx-leaflet": "^8.1.0",
"@aws-amplify/analytics": "^5.0.2",
"@aws-amplify/api": "^4.0.2",
"@aws-amplify/core": "^4.1.0",
"@aws-amplify/datastore": "^3.1.0",
"@aws-amplify/interactions": "^4.0.2",
"@aws-amplify/pubsub": "^4.0.2",
"@aws-amplify/storage": "^4.1.1",
"@aws-amplify/ui": "^2.0.3",
"@aws-amplify/ui-angular": "^1.0.11",
"@aws-amplify/xr": "^3.0.2",
"@types/graphql": "^14.5.0",
"@types/leaflet": "^1.7.2",
"@types/zen-observable": "^0.8.2",
"aws-sdk": "^2.929.0",
"date-fns": "^2.22.1",
"export-to-csv": "^0.2.1",
"fingerprintjs2": "^2.1.4",
"jquery": "^3.6.0",
"jquery-ui": "^1.12.1",
"leaflet": "^1.7.1",
"localforage": "^1.9.0",
"ng-event-bus": "^2.0.0",
"ng5-slider": "^1.2.6",
"ngforage": "6.0.0",
"ngx-infinite-scroll": "^10.0.1",
"rollbar": "^2.22.0",
"rxjs": "^6.6.7",
"tslib": "^2.3.0",
"twitter-text": "^3.1.0",
"uuid": "^8.3.2",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.14",
"@angular/cli": "^11.2.14",
"@angular/compiler-cli" : "^11.2.14",
"@angular/language-service" : "^11.2.14",
"@angularclass/hmr" : "^3.0.0",
"@types/jasmine" : "^3.7.7",
"@types/jasminewd2" : "^2.0.9",
"@types/jquery" : "^3.5.5",
"@types/node" : "^18.11.10",
"codelyzer" : "^6.0.2",
"csv" : "^6.0.4",
"csv-parse" : "^5.0.3",
"cypress" : "^11.2.0",
"cypress-intellij-reporter" : "0.0.7",
"cypress-plugin-snapshots" : "1.4.4",
"cypress-terminal-report" : "^4.1.2",
"glob-promise" : "^4.2.2",
"ini" : "^2.0.0",
"inquirer" : "^7.3.3",
"jasmine-core" : "^3.7.1",
"jasmine-spec-reporter" : "^6.0.0",
"jsdiff" : "^1.1.1",
"karma" : "^5.2.3",
"karma-chrome-launcher" : "^3.1.0",
"karma-coverage-istanbul-reporter" : "^3.0.2",
"karma-jasmine" : "^4.0.0",
"karma-jasmine-html-reporter": "^1.6.0",
"mocha": "^8.4.0",
"mochawesome": "^6.2.2",
"mochawesome-merge": "^4.2.0",
"mochawesome-report-generator": "^5.2.0",
"neat-csv": "^7.0.0",
"protractor": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"supertest": "^6.2.2",
"ts-node": "~10.9.1",
"tslint": "~6.1.0",
"typescript" : "^4.1.5"
}
}