-
Notifications
You must be signed in to change notification settings - Fork 198
/
package.json
85 lines (85 loc) · 2.88 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
{
"name": "ngx-echarts-demo",
"version": "17.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port=4202",
"convert": "node ./scripts/convert.js",
"build": "ng build",
"build:prod": "ng build --configuration production --base-href ./",
"build:lib": "ng build ngx-echarts",
"build:lib:prod": "ng build ngx-echarts --configuration production",
"test": "ng test",
"test:lib": "ng test ngx-echarts",
"lint": "ng lint",
"fix": "ng lint --fix",
"e2e": "ng e2e",
"clean": "rm -rf dist",
"compodoc": "compodoc -p projects/ngx-echarts/tsconfig.lib.json -d dist/docs/browser/api-doc --theme stripe",
"serve:doc": "compodoc -p projects/ngx-echarts/tsconfig.lib.json -s",
"build:doc": "run-s build:prod compodoc",
"update:file": "cpr README.md dist/ngx-echarts/README.md -o",
"release": "run-s clean dist build:doc",
"demo": "run-s build:lib start",
"dist": "run-s clean build:lib:prod update:file"
},
"private": true,
"dependencies": {
"@angular/animations": "~19.0.1",
"@angular/common": "~19.0.1",
"@angular/compiler": "~19.0.1",
"@angular/core": "~19.0.1",
"@angular/forms": "~19.0.1",
"@angular/platform-browser": "~19.0.1",
"@angular/platform-browser-dynamic": "~19.0.1",
"@angular/router": "~19.0.1",
"@ant-design/icons-angular": "^17.0.0",
"echarts": "^5.5.1",
"echarts-gl": "^2.0.9",
"ng-zorro-antd": "~17.4.0",
"rxjs": "~7.5.5",
"tslib": "~2.4.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.0.2",
"@angular-devkit/core": "~19.0.2",
"@angular-eslint/builder": "^17.0.0",
"@angular-eslint/eslint-plugin": "^17.0.0",
"@angular-eslint/eslint-plugin-template": "^17.0.0",
"@angular-eslint/schematics": "^17.0.0",
"@angular-eslint/template-parser": "^17.0.0",
"@angular/cli": "~19.0.2",
"@angular/compiler-cli": "~19.0.1",
"@angular/language-service": "~19.0.1",
"@compodoc/compodoc": "^1.1.19",
"@types/jasmine": "~4.0.3",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"codelyzer": "^6.0.2",
"cpr": "^3.0.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"html-loader": "^3.1.2",
"jasmine-core": "~4.2.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^19.0.1",
"ngx-markdown": "^17.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"prismjs": "^1.28.0",
"protractor": "~7.0.0",
"raw-loader": "^4.0.2",
"ts-node": "~10.8.1",
"typescript": "~5.6.3"
}
}