-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·110 lines (110 loc) · 3.82 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
104
105
106
107
108
109
110
{
"name": "sisgeo",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"e2e": "ng e2e",
"lint": "ng lint",
"ng": "ng",
"start:augury": "ng serve --port 3003 --proxy-config proxy.config.js --configuration augury",
"test": "ng test",
"start": "ng serve --open --port 3003 --proxy-config proxy.config.js",
"start-staging": "ng serve --open --configuration=staging --port 3001",
"build-staging": "ng build --configuration=staging --base-href '/homologation/'",
"start-production": "ng serve --open --configuration=production --port 3001",
"build-production": "ng build --configuration=production --base-href '/'",
"build-gh-pages": "ng build --configuration=staging --base-href 'https://terrabrasilis.github.io/webmap/'",
"deploy-gh-pages": "yarn build-gh-pages && ./node_modules/angular-cli-ghpages/angular-cli-ghpages --dir=dist/terrabrasilis --no-silent",
"test_headless": "ng test --watch false --browsers ChromeHeadless",
"e2e_headless": "ng e2e --protractor-config='e2e/ci.protractor.conf.js'",
"all_tests": "yarn test_headless && yarn lint"
},
"dependencies": {
"@angular/animations": "^8.2.1",
"@angular/cdk": "^8.1.2",
"@angular/common": "^8.2.1",
"@angular/compiler": "^8.2.1",
"@angular/core": "^8.2.1",
"@angular/forms": "^8.2.1",
"@angular/http": "^7.2.15",
"@angular/material": "^8.1.2",
"@angular/platform-browser": "^8.2.1",
"@angular/platform-browser-dynamic": "^8.2.1",
"@angular/router": "^8.2.1",
"@augury/schematics": "^0.6.1",
"@ecodev/fab-speed-dial": "4.0.0",
"@ngx-pwa/local-storage": "^5.3.0",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"d3": "5.5.0",
"flag-icon-css": "^3.0.0",
"font-awesome": "^4.7.0",
"gridstack": "0.4.0",
"hammerjs": "^2.0.8",
"jquery": "^3.3.1",
"leaflet": "1.3.1",
"lodash": "^4.17.10",
"ng2-go-top-button": "^8.0.5",
"ngx-spinner": "^8.1.0",
"ogc-schemas": "^2.6.1",
"rxjs": "^6.5.2",
"rxjs-compat": "^6.5.5",
"terrabrasilis-api": "terrabrasilis/terrabrasilis-api#27f3b4f",
"terrabrasilis-jsonix": "terrabrasilis/terrabrasilis-jsonix#96080e1",
"terrabrasilis-util": "terrabrasilis/terrabrasilis-util#f3665cc",
"w3c-schemas": "^1.4.0",
"zone.js": "^0.8.19"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.802.1",
"@angular/cli": "~8.2.1",
"@angular/compiler-cli": "^8.2.1",
"@angular/language-service": "^8.2.1",
"@augury/core": "0.6.0",
"@augury/performance-profiler-plugin": "0.6.1",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/d3": "^5.0.0",
"@types/d3-queue": "^3.0.7",
"@types/google.analytics": "0.0.40",
"@types/jasmine": "^3.5.10",
"@types/jqueryui": "^1.12.2",
"@types/leaflet": "^1.5.0",
"@types/node": "~12.7.1",
"angular-cli-ghpages": "^0.6.0",
"codelyzer": "^5.1.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.2.0",
"karma-chrome-launcher": "~3.0.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"protractor": "~5.4.2",
"sass-loader": "^7.2.0",
"style-loader": "^1.0.0",
"ts-node": "~8.3.0",
"tslint": "~5.18.0",
"typescript": "3.5.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "4.39.1",
"webpack-cli": "3.3.6",
"webpack-dev-server": "^3.8.0"
},
"browser": {
"fs": false,
"http": false,
"https": false,
"net": false,
"path": false,
"stream": false,
"tls": false
}
}