-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
73 lines (73 loc) · 2.45 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
{
"name": "hobbyfarm-ui",
"scripts": {
"ng": "ng",
"setup:local": "node setup-local.js",
"start": "ng serve",
"start:local": "npm run setup:local && ng serve --configuration=local",
"start:local:docker": "npm run setup:local && ng serve --configuration=local --host=0.0.0.0",
"build": "ng build",
"build:prod": "ng build --configuration production --aot",
"prettier:check": "prettier --ignore-path .gitignore --check .",
"prettier:format": "prettier --ignore-path .gitignore --write .",
"test": "ng test",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.1",
"@angular/common": "^16.2.1",
"@angular/compiler": "^16.2.1",
"@angular/core": "^16.2.1",
"@angular/forms": "^16.2.1",
"@angular/platform-browser": "^16.2.1",
"@angular/platform-browser-dynamic": "^16.2.1",
"@angular/router": "^16.2.1",
"@auth0/angular-jwt": "^5.1.2",
"@cds/core": "^6.5.0",
"@clr/angular": "^15.10.0",
"@clr/ui": "^15.10.0",
"@webcomponents/custom-elements": "^1.0.0",
"@webcomponents/webcomponentsjs": "^2.0.0",
"angular-split": "^13.2.0",
"guacamole-common-js": "^1.4.0-a",
"marked": "^4.3.0",
"mermaid": "^10.6.0",
"ngx-dynamic-hooks": "^2.1.0",
"ngx-markdown": "^16.0.0",
"rxjs": "^7.4.0",
"tslib": "^2.6.1",
"xterm": "^5.2.1",
"xterm-addon-attach": "^0.8.0",
"xterm-addon-canvas": "^0.4.0",
"xterm-addon-fit": "^0.7.0",
"zone.js": "^0.13.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
"@angular-eslint/builder": "16.1.1",
"@angular-eslint/eslint-plugin": "16.1.1",
"@angular-eslint/eslint-plugin-template": "16.1.1",
"@angular-eslint/schematics": "16.1.1",
"@angular-eslint/template-parser": "16.1.1",
"@angular/cli": "^16.2.0",
"@angular/compiler-cli": "^16.2.1",
"@types/d3": "^7.4.3",
"@types/dompurify": "^3.0.5",
"@types/guacamole-common-js": "^1.3.2",
"@types/jasmine": "~3.8.0",
"@types/marked": "^4.3.0",
"@types/prismjs": "^1.26.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"jasmine-core": "~3.8.0",
"karma": "~6.3.8",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"prettier": "^2.5.1",
"typescript": "~4.9.5"
}
}