-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 3.08 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
{
"name": "strongbox-database-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --delete-output-path --prod --deployUrl /database/static/assets/ --build-optimizer",
"build-source-map": "npm run build -- --source-map",
"package": "./node_modules/.bin/rimraf dist/packaging/* && ./node_modules/.bin/webpack --env.configuration=prod",
"serve-packaged": "./node_modules/.bin/http-server dist/packaging/strongbox-database-ui -a 127.0.0.1 -p 4207 -g -c-1 --no-dotfiles -o /",
"ci-build": "npm run build && npm run package",
"ci-test": "ng test --browsers HeadlessChrome,HeadlessFirefox",
"ci-e2e": "ng e2e --port 4201 --protractor-config ./e2e/protractor-ci.conf.js",
"test": "ng test --watch --browsers Chrome --source-map=false",
"lint": "ng lint",
"e2e": "ng e2e --port 4201",
"// postinstall note": "Check https://angular.io/guide/ivy#speeding-up-ngcc-compilation",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"// utils": "",
"source-map-explorer": "node_modules/.bin/source-map-explorer dist/strongbox-database-ui/main-es2015.*.js"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.0.0",
"@angular/cdk": "~9.0.0",
"@angular/common": "~9.0.0",
"@angular/compiler": "~9.0.0",
"@angular/core": "~9.0.0",
"@angular/flex-layout": "^9.0.0-beta.29",
"@angular/forms": "~9.0.0",
"@angular/material": "~9.0.0",
"@angular/platform-browser": "~9.0.0",
"@angular/platform-browser-dynamic": "~9.0.0",
"@angular/router": "~9.0.0",
"class-transformer": "^0.3.1",
"core-js": "^3.5.0",
"d3": "^5.14.2",
"d3-force": "^2.0.1",
"d3-force-reuse": "^1.0.1",
"ionicons": "^4.6.3",
"ngx-json-viewer": "^2.4.0",
"ngx-toastr": "^12.0.0",
"open-sans-fontface": "^1.4.0",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"uuid": "^3.3.3",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.1",
"@angular/cli": "~9.0.1",
"@angular/compiler-cli": "~9.0.0",
"@angular/language-service": "~9.0.0",
"@types/d3": "^5.7.2",
"@types/d3-force": "^1.2.1",
"@types/d3-selection": "^1.4.1",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"compression-webpack-plugin": "^3.0.1",
"filemanager-webpack-plugin": "^2.0.5",
"http-server": "^0.12.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"karma-junit-reporter": "^2.0.1",
"karma-verbose-reporter": "0.0.6",
"protractor": "~5.4.0",
"rimraf": "^3.0.0",
"source-map-explorer": "^2.2.2",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.7.5",
"webpack-cli": "^3.3.10",
"webpack-manifest-plugin": "^2.2.0"
}
}