forked from bwsw/cloudstack-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.65 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
111
112
113
{
"name": "cloudstack-ui",
"version": "1.411.29",
"license": "Apache-2.0",
"repository": "github:bwsw/cloudstack-ui",
"scripts": {
"ng": "ng",
"start": "npm run build-themes && ng serve",
"hmr": "npm run build-themes && ng serve --configuration hmr",
"build-themes": "node-sass src/style/themes -o src/css/themes",
"build": "npm run build-themes && node --max_old_space_size=8192 ./node_modules/@angular/cli/bin/ng build",
"test": "ng test --code-coverage --watch=false",
"test:watch": "ng test",
"lint": "ng lint",
"format:check": "prettier --config ./.prettierrc --check \"{src,e2e}/**/*{.ts,.js,.json,.css,.scss,.html}\"",
"e2e": "ng e2e",
"coveralls": "cat ./reports/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"private": true,
"dependencies": {
"@angular/animations": "7.1.2",
"@angular/cdk": "7.1.1",
"@angular/common": "7.1.2",
"@angular/core": "7.1.2",
"@angular/forms": "7.1.2",
"@angular/http": "7.1.2",
"@angular/material": "7.1.1",
"@angular/platform-browser": "7.1.2",
"@angular/platform-browser-dynamic": "7.1.2",
"@angular/platform-server": "7.1.2",
"@angular/router": "7.1.2",
"@mdi/font": "^2.7.94",
"@ng-idle/core": "6.0.0-beta.3",
"@ng-idle/keepalive": "6.0.0-beta.3",
"@ngrx/effects": "6.1.0",
"@ngrx/entity": "6.1.0",
"@ngrx/router-store": "6.1.0",
"@ngrx/store": "^8.6.0",
"@ngrx/store-devtools": "6.1.0",
"@ngx-translate/core": "^10.0.2",
"@ngx-translate/http-loader": "^3.0.1",
"ajv": "^6.5.2",
"ajv-errors": "^1.0.0",
"ajv-keywords": "^3.2.0",
"angular2-draggable": "^2.1.8",
"chart.js": "2.9.3",
"core-js": "^2.4.1",
"deep-diff": "^1.0.2",
"hammerjs": "^2.0.8",
"immutability-helper": "^2.9.0",
"js-base64": "^2.5.1",
"lodash": "^4.17.13",
"moment": "^2.18.1",
"ng-dynamic-component": "^3.0.0",
"ng2-dragula": "1.5.0",
"ngx-clipboard": "^11.1.7",
"ngx-infinite-scroll": "^6.0.1",
"ngx-mat-select-search": "^1.7.6",
"resize-observer-polyfill": "^1.5.0",
"rxjs": "^6.3.3",
"showdown": "^1.8.4",
"tslib": "^1.9.0",
"uuid": "^3.1.0",
"web-animations-js": "2.3.1",
"xregexp": "^4.2.4",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.1",
"@angular/cli": "^7.3.1",
"@angular/compiler": "7.1.4",
"@angular/compiler-cli": "7.2.4",
"@angular/language-service": "7.1.2",
"@angularclass/hmr": "^2.1.3",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "^2.0.6",
"@types/js-base64": "^2.3.1",
"@types/lodash": "^4.14.119",
"@types/node": "^8.0.16",
"@types/showdown": "^1.7.1",
"codelyzer": "^4.5.0",
"conventional-changelog": "^2.0.3",
"conventional-changelog-cli": "^2.0.5",
"coveralls": "^3.0.2",
"husky": "^1.1.2",
"jasmine-core": "~2.99.1",
"jasmine-marbles": "^0.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-junit-reporter": "^1.2.0",
"karma-mocha-reporter": "^2.2.3",
"ng-mocks": "^8.1.0",
"ngrx-store-freeze": "^0.2.0",
"prettier": "^1.16.4",
"pretty-quick": "^1.8.0",
"protractor": "~5.3.0",
"ts-node": "~5.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "~3.1.6"
}
}