forked from apache/hertzbeat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.06 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "hertzbeat-web-app",
"version": "1.0.0",
"description": "A real-time monitoring tool with custom-monitor and agentLess.",
"author": "hertzbeat community",
"repository": {
"type": "git",
"url": "git+https://github.com/apache/hertzbeat.git"
},
"bugs": {
"url": "https://github.com/apache/hertzbeat/issues"
},
"homepage": "https://hertzbeat.apache.org",
"license": "Apache2.0",
"keywords": [
"monitor",
"uptime",
"monitoring",
"angular"
],
"scripts": {
"ng": "ng",
"start": "ng s -o",
"build": "npm run ng-high-memory build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"ng-high-memory": "node --max_old_space_size=8000 ./node_modules/@angular/cli/bin/ng",
"hmr": "ng s -o --hmr",
"analyze": "npm run ng-high-memory build -- --source-map",
"analyze:view": "source-map-explorer dist/**/*.js",
"test-coverage": "ng test --code-coverage --watch=false",
"color-less": "ng-alain-plugin-theme -t=colorLess",
"theme": "ng-alain-plugin-theme -t=themeCss",
"icon": "ng g ng-alain:plugin icon",
"lint": "npm run lint:fix && npm run lint:style",
"lint:ts": "ng lint",
"lint:fix": "ng lint --fix",
"lint:style": "stylelint \"src/**/*.less\" --syntax less --fix",
"package": "ng build --configuration production"
},
"private": true,
"dependencies": {
"@angular/animations": "15.2.10",
"@angular/common": "15.2.10",
"@angular/compiler": "15.2.10",
"@angular/core": "15.2.10",
"@angular/forms": "15.2.10",
"@angular/platform-browser": "15.2.10",
"@angular/platform-browser-dynamic": "15.2.10",
"@angular/router": "15.2.10",
"@delon/abc": "15.2.1",
"@delon/acl": "15.2.1",
"@delon/auth": "15.2.1",
"@delon/cache": "15.2.1",
"@delon/form": "15.2.1",
"@delon/mock": "15.2.1",
"@delon/theme": "15.2.1",
"@delon/util": "15.2.1",
"ajv": "8.12.0",
"ajv-formats": "2.1.1",
"angular-tag-cloud-module": "15.0.0",
"echarts": "5.4.3",
"jquery": "3.7.1",
"monaco-editor": "0.36.1",
"ng-zorro-antd": "15.1.0",
"ngx-color-picker": "12.0.1",
"ngx-echarts": "15.0.3",
"ngx-slick-carousel": "15.0.0",
"rxjs": "7.8.1",
"screenfull": "6.0.2",
"slick-carousel": "1.8.1",
"tslib": "2.6.2",
"zone.js": "0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.2.10",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "15.2.10",
"@angular/compiler-cli": "15.2.10",
"@angular/language-service": "15.2.10",
"@delon/testing": "15.2.1",
"@types/jasmine": "4.0.3",
"@types/jasminewd2": "2.0.12",
"@types/node": "12.20.55",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"eslint": "8.51.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-deprecation": "1.3.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.7.5",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "4.2.1",
"husky": "7.0.4",
"jasmine-core": "4.3.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.2",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"lint-staged": "13.3.0",
"ng-alain": "15.2.1",
"node-fetch": "2.7.0",
"prettier": "2.8.8",
"protractor": "7.0.0",
"source-map-explorer": "2.5.3",
"stylelint": "14.16.1",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard": "28.0.0",
"stylelint-declaration-block-no-ignored-properties": "2.7.0",
"stylelint-order": "5.0.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"lint-staged": {
"(src)/**/*.{html,ts}": [
"eslint --fix"
],
"(src)/**/*.less": [
"npm run lint:style"
]
}
}