-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.54 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
{
"name": "grafs",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 9004 --aot=false",
"remote": "ng serve --port 9004 --host 0.0.0.0 --aot false --proxy-config proxy.conf.json",
"build": "if [ $BRANCH = 'production' ]; then export PREFIX='/grafs/'; else export PREFIX='/grafs/staging/'; fi; npm run build-with-prefix",
"build-with-prefix": "echo prefix=$PREFIX && ng build --prod --no-aot --base-href $PREFIX",
"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/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.3.1",
"core-js": "^2.5.4",
"dap-query-js": "github:flowmatters/dap-query-js",
"font-awesome": "^4.7.0",
"map-wald": "github:ANU-WALD/map-wald",
"ngx-pipes": "^2.5.6",
"plotly.js": "git+https://github.com/arlowhite/plotly.js.git#no-polyfill",
"proj4": "^2.5.0",
"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",
"@angular/compiler-cli": "^8.2.2",
"@angular/language-service": "^8.2.2",
"@types/geojson": "^1.0.6",
"@types/history": "^4.7.2",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"@types/proj4": "^2.5.0",
"@types/storejs": "^2.0.3",
"codelyzer": "^5.0.1",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.3.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.5.3"
}
}