-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
104 lines (104 loc) · 3.91 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
{
"name": "strongbox-web-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run clean-dist && ng build --prod",
"postbuild": "./node_modules/.bin/webpack --config ./tools/webpack.config.js",
"build-source-map": "npm run clean-dist && npm run build -- --source-map && source-map-explorer dist/strongbox-web-ui/static/assets/main-es5.*.js && source-map-explorer dist/strongbox-web-ui/static/assets/main-es2015.*.js",
"serve-packaged": "./node_modules/.bin/http-server dist/strongbox-web-ui -p 4206 -g -c-1 -o",
"clean-dist": "./node_modules/.bin/rimraf dist",
"clean-install": "./node_modules/.bin/rimraf node_modules && npm cache clear --force && npm install",
"postinstall": "npm run webdriver-update && npm run patch-antlr4 && npm run antlr4",
"ci-build": "npm run clean-dist && npm run build -- --no-progress",
"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",
"webdriver-update": "node ./tools/update-webdriver.js ",
"antlr4": "antlr4-tool --language javascript -o src/aql/ src/aql/AQL.g4",
"patch-antlr4": "node ./tools/antlr4-patch.js"
},
"private": true,
"dependencies": {
"@angular/animations": "10.1.6",
"@angular/cdk": "~10.2.5",
"@angular/common": "10.1.6",
"@angular/compiler": "10.1.6",
"@angular/core": "10.1.6",
"@angular/flex-layout": "^10.0.0-beta.32",
"@angular/forms": "10.1.6",
"@angular/material": "~10.2.5",
"@angular/platform-browser": "10.1.6",
"@angular/platform-browser-dynamic": "10.1.6",
"@angular/router": "10.1.6",
"@ng-select/ng-select": "^4.0.4",
"@ngx-progressbar/core": "^5.3.2",
"@ngx-progressbar/http": "^5.3.2",
"@ngx-progressbar/router": "^5.3.2",
"@ngxs/form-plugin": "~3.7.0",
"@ngxs/router-plugin": "~3.7.0",
"@ngxs/store": "~3.7.0",
"antlr4": "~4.7.1",
"antlr4-autosuggest": "0.0.28",
"antlr4ts": "^0.4.1-alpha.0",
"chart.js": "^2.9.3",
"class-transformer": "~0.3.1",
"core-js": "^2.6.3",
"dayjs": "~1.8.15",
"event-source-polyfill": "^1.0.9",
"fonts-raleway": "0.0.4",
"ionicons": "^4.4.8",
"ng2-charts": "^2.3.0",
"ngx-toastr": "~12.1.0",
"ngx-virtual-scroller": "^3.0.3",
"open-sans-fontface": "^1.4.0",
"rxjs": "~6.6.3",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1002.0",
"@angular/cli": "~10.1.7",
"@angular/compiler-cli": "10.1.6",
"@angular/language-service": "10.1.6",
"@ngxs/devtools-plugin": "^3.7.0",
"@ngxs/logger-plugin": "^3.7.0",
"@types/antlr4-autosuggest": "0.0.0",
"@types/jasmine": "~3.3.0",
"@types/jasminewd2": "~2.0.6",
"@types/node": "^12.11.1",
"antlr4-tool": "~1.0.21",
"codelyzer": "^5.1.2",
"compass-mixins": "^0.12.10",
"compression-webpack-plugin": "^2.0.0",
"filemanager-webpack-plugin": "^2.0.5",
"find-chrome-version": "^1.0.2",
"glob": "^7.1.3",
"http-server": "^0.12.3",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-firefox-launcher": "~1.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-junit-reporter": "^1.2.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-summary-reporter": "~1.6.0",
"karma-verbose-reporter": "~0.0.6",
"protractor": "~7.0.0",
"replace-in-file": "^5.0.2",
"rimraf": "^2.6.2",
"rxjs-marbles": "^5.0.3",
"source-map-explorer": "^1.6.0",
"ts-node": "~7.0.1",
"tslint": "~6.1.0",
"typescript": "~4.0.3",
"webpack-cli": "^3.1.2",
"webpack-manifest-plugin": "^2.0.4"
}
}