This repository has been archived by the owner on Dec 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
111 lines (111 loc) · 3.4 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
{
"name": "glowing-bear",
"version": "0.0.1-SNAPSHOT",
"license": "GPL-3.0+",
"scripts": {
"ng": "ng",
"serve": "ng serve --aot --ssl",
"build": "ng build",
"package": "ng build --configuration production --progress=false",
"test": "ng test --code-coverage",
"testOnce": "ng test --watch=false --code-coverage",
"lint": "ng lint glowing-bear",
"report-coverage": "codecov",
"e2e": "npx cypress run",
"cypress": "npx cypress open",
"cypress-dev": "npx cypress open --config baseUrl=https://localhost:4200 --env apiUrl=http://localhost:8081"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.9",
"@angular/cdk": "^12.2.13",
"@angular/common": "^13.3.9",
"@angular/compiler": "^13.3.9",
"@angular/compiler-cli": "^13.3.9",
"@angular/core": "^13.3.9",
"@angular/forms": "^13.3.9",
"@angular/localize": "^13.3.9",
"@angular/material": "^12.2.13",
"@angular/platform-browser": "^13.3.9",
"@angular/platform-browser-dynamic": "^13.3.9",
"@angular/platform-server": "^13.3.9",
"@angular/router": "^13.3.9",
"@fullcalendar/core": "^5.11.0",
"@types/file-saver": "^1.3.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.27.1",
"angular-split": "^3.0.3",
"chart.js": "^2.9.3",
"core-js": "^2.5.7",
"css-vars-ponyfill": "^1.17.2",
"eslint-plugin-import": "^2.26.0",
"file-saver": "^1.3.3",
"font-awesome": "^4.7.0",
"fractalis": "^1.4.1",
"jwt-decode": "^2.2.0",
"material-design-icons": "^3.0.1",
"moment": "^2.29.4",
"primeicons": "^2.0.0",
"primeng": "^9.1.3",
"quill": "^1.3.7",
"roboto-fontface": "^0.10.0",
"rxjs": "^6.4.0",
"rxjs-compat": "^6.4.0",
"sanitize-filename": "^1.6.1",
"ua-parser-js": "^0.7.31",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.6",
"@angular-eslint/builder": "13.3.0",
"@angular-eslint/eslint-plugin": "13.3.0",
"@angular-eslint/eslint-plugin-template": "13.3.0",
"@angular-eslint/schematics": "13.3.0",
"@angular-eslint/template-parser": "13.3.0",
"@angular/cli": "^13.3.6",
"@types/deep-equal": "^1.0.1",
"@types/jasmine": "~3.6.0",
"@types/node": "^11.11.3",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"codecov": "^3.8.3",
"cucumber": "^2.3.1",
"cypress": "^10.4.0",
"cypress-cucumber-preprocessor": "^2.5.5",
"cypress-file-upload": "^5.0.8",
"deep-equal": "^2.0.1",
"es6-promise": "^4.1.1",
"eslint": "^8.17.0",
"eslint-plugin-jsdoc": "^38.1.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.20",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~5.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-spec-reporter": "^0.0.34",
"ng2-mock-component": "^0.1.0",
"ts-node": "^8.0.3",
"typescript": "~4.6.4"
},
"resolutions": {
"axios": "0.21.1",
"lodash": "4.17.19",
"minimist": "1.2.6",
"vue": "2.5.22",
"ini": "1.3.6",
"webpack": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/thehyve/glowing-bear.git"
},
"homepage": "https://glowingbear.app/",
"browserslist": [
"> 1%",
"last 2 versions",
"ie 11"
]
}