-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 3 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
{
"name": "tern-data-viewer",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --port 9002 --aot false --proxy-config proxy.conf.json",
"remote": "ng serve --port 9002 --host 0.0.0.0 --aot false --proxy-config proxy.conf.json",
"build": "if [ $BRANCH = 'production' ]; then export PREFIX='/'; else export PREFIX='/ternanu/staging/'; fi; npm run build-with-prefix",
"build-old": "if [ $BRANCH = 'production' ]; then export PREFIX='/ternanu/'; else export PREFIX='/'; fi; npm run build-with-prefix",
"build-with-prefix": "echo prefix=$PREFIX && ng build --prod --no-aot --base-href $PREFIX",
"deprecated-build": "npm run transpile-plotly && npm run fix-plotly",
"transpile-plotly": "mkdir -p plotly-transpiled && browserify node_modules/typedarray/index.js -o plotly-transpiled/typedarray.js && cd node_modules/plotly.js/dist && babel -d ../../../plotly-transpiled plotly.js plotly.min.js",
"fix-plotly": "cp plotly-transpiled/plotly.min.js dist/plotly.js && cp plotly-transpiled/typedaray.js dist && sed 's-../plotly-transpiled-.-g' < dist/index.html > tmp && mv tmp dist/index.html",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@agm/core": "^1.0.0-beta.7",
"@angular/animations": "^8.2.2",
"@angular/common": "^8.2.2",
"@angular/compiler": "^8.2.2",
"@angular/compiler-cli": "^8.2.2",
"@angular/core": "^8.2.2",
"@angular/forms": "^8.2.2",
"@angular/platform-browser": "^8.2.2",
"@angular/platform-browser-dynamic": "^8.2.2",
"@angular/platform-server": "^8.2.2",
"@angular/router": "^8.2.2",
"@ng-bootstrap/ng-bootstrap": "^4.0.3",
"bootstrap": "^4.0.0",
"classlist.js": "^1.1.20150312",
"core-js": "^2.4.1",
"dap-query-js": "github:flowmatters/dap-query-js",
"font-awesome": "^4.7.0",
"map-wald": "github:ANU-WALD/map-wald#7b5b2b50f98a2439e34f5e754a1a6789b1540209",
"map-wald-visual": "github:ANU-WALD/map-wald-visual#ce34da6501b486f39e7b94856966498d45cc14ba",
"ngx-pipes": "^2.3.10",
"plotly.js": "git+https://github.com/arlowhite/plotly.js.git#no-polyfill",
"popper.js": "^1.12.9",
"proj4": "^2.3.17",
"rxjs": "^6.5.3",
"store": "^2.0.12",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.802.2",
"@angular/cli": "^8.2.2",
"@types/geojson": "^1.0.3",
"@types/google.analytics": "0.0.39",
"@types/googlemaps": "^3.37.7",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"@types/proj4": "^2.3.4",
"@types/storejs": "^2.0.3",
"codelyzer": "^5.0.1",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.0",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "~3.5.3"
}
}