forked from sinequa/sba-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.65 KB
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
111
112
{
"name": "ng-ws",
"version": "1.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"buildcore": "ng build core",
"buildhellosearch": "ng build hello-search --prod",
"buildcomponents": "ng build components",
"buildvanilla": "ng build vanilla-search --prod",
"buildall": "npm run buildcore && npm run buildhellosearch && npm run buildcomponents && npm run buildvanilla",
"makedoc-core": "cd projects/core && node ../../scripts/makedoc.js -d ../../docs/core -p tsconfig.lib.json -n \"Core\"",
"makedoc-components": "cd projects/components && node ../../scripts/makedoc.js -d ../../docs/components -p tsconfig.lib.json -n \"Components\""
},
"compodoc": {
"disablePrivate": true,
"disableProtected": true,
"disableInternal": true
},
"private": true,
"dependencies": {
"@angular/animations": "9.0.2",
"@angular/cdk": "9.0.1",
"@angular/common": "9.0.2",
"@angular/compiler": "9.0.2",
"@angular/core": "9.0.2",
"@angular/flex-layout": "^9.0.0-beta.29",
"@angular/forms": "9.0.2",
"@angular/material": "9.0.1",
"@angular/platform-browser": "9.0.2",
"@angular/platform-browser-dynamic": "9.0.2",
"@angular/router": "9.0.2",
"@formatjs/intl-relativetimeformat": "^4.5.12",
"@fortawesome/fontawesome-free": "^5.13.0",
"@swimlane/ngx-charts": "^13.0.3",
"angular-fusioncharts": "^3.0.4",
"atomicjs": "^4.4.1",
"bootstrap": "^4.4.1",
"classlist.js": "^1.1.20150312",
"custom-event": "^1.0.1",
"d3": "^5.15.1",
"diacritics": "^1.3.0",
"element-resize-detector": "^1.2.1",
"fast-text-encoding": "^1.0.1",
"focus-within": "^3.0.2",
"fusioncharts": "^3.15.1-sr.1",
"hammerjs": "^2.0.8",
"intl": "^1.2.5",
"intl-format-cache": "^4.2.24",
"intl-messageformat": "^7.8.4",
"intl-messageformat-parser": "^3.6.4",
"intl-pluralrules": "^1.2.0",
"jquery": "^3.5.0",
"jquery-contextmenu": "^2.9.0",
"js-polyfills": "^0.1.42",
"jssha": "^2.4.2",
"jstz": "^2.1.1",
"lodash": "^4.17.15",
"matchmedia-polyfill": "^0.3.2",
"material-design-icons-iconfont": "^5.0.1",
"moment": "^2.24.0",
"ng2-ui-auth": "^10.0.1",
"ng5-slider": "^1.2.4",
"ngx-bootstrap": "^5.6.1",
"ngx-vis": "^3.1.0",
"popper.js": "^1.16.1",
"rxjs": "~6.5.5",
"tslib": "^1.11.1",
"vis-data": "^6.5.1",
"vis-network": "^7.3.4",
"vis-timeline": "^7.3.4",
"vis-util": "^4.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "9.0.0",
"@angular-devkit/build-angular": "0.900.7",
"@angular-devkit/build-ng-packagr": "0.900.7",
"@angular/cli": "9.0.3",
"@angular/compiler-cli": "9.0.2",
"@angular/language-service": "9.0.2",
"@compodoc/compodoc": "^1.1.11",
"@types/d3": "^5.7.2",
"@types/googlemaps": "^3.39.3",
"@types/jasmine": "~3.5.10",
"@types/jasminewd2": "~2.0.3",
"@types/jquery": "^3.3.35",
"@types/jquery.contextmenu": "^1.7.34",
"@types/node": "^8.10.60",
"codelyzer": "^5.2.2",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.5.3",
"ng-packagr": "^9.1.1",
"postcss-flexbugs-fixes": "^4.2.0",
"postcss-focus-within": "^3.0.0",
"protractor": "^5.4.3",
"sass-asset-functions": "^0.1.1",
"sass-color-helpers": "^2.1.1",
"ts-node": "~8.3.0",
"tslint": "~5.18.0",
"typescript": "~3.7.5"
}
}