forked from hobbyfarm/admin-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.63 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
{
"name": "hobbyfarm-admin",
"version": "0.0.13",
"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",
"test": "ng test",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.6",
"@angular/cdk": "^16.2.6",
"@angular/common": "^16.2.6",
"@angular/compiler": "^16.2.6",
"@angular/core": "^16.2.6",
"@angular/forms": "^16.2.6",
"@angular/platform-browser": "^16.2.6",
"@angular/platform-browser-dynamic": "^16.2.6",
"@angular/router": "^16.2.6",
"@auth0/angular-jwt": "^5.1.2",
"@cds/core": "^6.7.0",
"@clr/angular": "^16.3.6",
"@clr/ui": "^16.3.6",
"@webcomponents/custom-elements": "^1.6.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"angular-bootstrap-datetimepicker": "file:./datetimepicker",
"angular-split": "^16.2.1",
"brace": "^0.11.1",
"chart.js": "^3.4.0",
"chartjs-plugin-datalabels": "^2.1.0",
"font-awesome": "^4.7.0",
"marked": "^4.3.0",
"mermaid": "^10.6.0",
"moment": "^2.29.4",
"ng2-charts": "^4.0.0",
"ng2-dragula": "^5.0.0",
"ngx-dynamic-hooks": "^2.1.0",
"ngx-markdown": "^16.0.0",
"parse-duration": "^1.1.0",
"rxjs": "^7.4.0",
"tslib": "^2.0.0",
"xterm": "^5.2.1",
"xterm-addon-attach": "^0.8.0",
"xterm-addon-canvas": "^0.4.0",
"xterm-addon-fit": "^0.7.0",
"yaml": "^2.4.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.3",
"@angular-eslint/builder": "16.2.0",
"@angular-eslint/eslint-plugin": "16.2.0",
"@angular-eslint/eslint-plugin-template": "16.2.0",
"@angular-eslint/schematics": "16.2.0",
"@angular-eslint/template-parser": "16.2.0",
"@angular/cli": "^16.2.3",
"@angular/compiler-cli": "^16.2.6",
"@types/jasmine": "~3.8.0",
"@types/marked": "^4.3.0",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jasmine-core": "~3.8.0",
"karma": "~6.3.17",
"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",
"typescript": "~4.9.5"
}
}