This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
103 lines (103 loc) · 4.24 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
{
"name": "wave",
"version": "3.0.2",
"license": "MIT",
"scripts": {
"ng": "ng",
"prettier": "prettier",
"start": "ng serve",
"build": "npm run build-prod:core && npm run build-prod:wave && npm run build-prod:gfbio && npm run build-prod:nature40",
"check": "prettier --check . && ng lint wave-core-new && ng lint geoengine-app && ng lint data-atlas-app",
"ci-core": "ng build --prod wave-core-new",
"serve:wave": "ng serve wave-app --proxy-config proxy.conf.json",
"serve:geoengine": "ng serve geoengine-app --proxy-config proxy-geoengine.conf.json",
"serve:data-atlas": "ng serve data-atlas-app --proxy-config proxy-data-atlas.conf.json",
"serve:gfbio": "ng serve gfbio-app --proxy-config proxy.conf.json",
"serve:nature40": "ng serve nature40-app --proxy-config proxy.conf.json",
"build:core": "ng build wave-core",
"build-watch:core": "ng build wave-core --watch",
"build:core-new": "ng build wave-core-new",
"build-watch:core-new": "ng build wave-core-new --watch",
"build-prod:core": "ng build --prod wave-core",
"build-prod:wave": "ng build --prod wave-app",
"build-prod:gfbio": "ng build --prod gfbio-app",
"build-prod:nature40": "ng build --prod nature40-app",
"publish:core:patch": "version=patch scripts/publish-to-github.sh",
"publish:core:minor": "version=minor scripts/publish-to-github.sh",
"publish:core:major": "version=major scripts/publish-to-github.sh",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.1.5",
"@angular/cdk": "~10.2.4",
"@angular/common": "~10.1.5",
"@angular/compiler": "~10.1.5",
"@angular/core": "~10.1.5",
"@angular/flex-layout": "~10.0.0-beta.32",
"@angular/forms": "~10.1.5",
"@angular/material": "~10.2.4",
"@angular/platform-browser": "~10.1.5",
"@angular/platform-browser-dynamic": "~10.1.5",
"@angular/router": "~10.1.5",
"codemirror": "~5.58.1",
"d3": "~6.2.0",
"dagre": "~0.8.5",
"dagre-d3": "~0.6.4",
"hellojs": "~1.18.6",
"html2canvas": "~1.0.0-rc.5",
"immutable": "~4.0.0-rc.12",
"moment": "~2.29.1",
"ngx-color-picker": "~10.1.0",
"ol": "~6.4.3",
"papaparse": "~5.3.0",
"proj4": "~2.6.2",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"vega": "~5.19.1",
"vega-embed": "~6.15.1",
"vega-lite": "~4.17.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1002.2",
"@angular-devkit/build-ng-packagr": "~0.1002.2",
"@angular-eslint/builder": "1.2.0",
"@angular-eslint/eslint-plugin": "1.2.0",
"@angular-eslint/eslint-plugin-template": "1.2.0",
"@angular-eslint/schematics": "1.2.0",
"@angular-eslint/template-parser": "1.2.0",
"@angular/cli": "~10.2.3",
"@angular/compiler-cli": "~10.1.5",
"@angular/language-service": "~10.1.5",
"@types/codemirror": "~0.0.87",
"@types/d3": "~5.16.3",
"@types/jasmine": "~3.5.14",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@types/papaparse": "~4.5.7",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "30.7.6",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-prettier": "^3.3.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"ng-packagr": "^10.1.0",
"prettier": "2.2.1",
"protractor": "~5.4.3",
"ts-node": "~8.3.0",
"typescript": "~4.0.3"
}
}