-
Notifications
You must be signed in to change notification settings - Fork 576
/
package.json
106 lines (106 loc) · 3.47 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
{
"name": "ng2-charts-demo",
"version": "^1.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"serve-static": "nx serve-static",
"build": "nx run ng2-charts-demo:build:development",
"build:prod": "nx run ng2-charts-demo:build",
"prebuild:prod": "node copy-sources.mjs",
"build:lib": "nx run ng2-charts:build:production",
"build:schematics": "nx run ng2-charts-schematics:build",
"publish:lib": "npm publish dist/ng2-charts",
"test": "nx run-many --target=test --verbose --all",
"test:ci": "nx run-many --target=test -p ng2-charts ng2-charts-schematics ng2-charts-demo --configuration=ci",
"e2e": "nx e2e --skip-nx-cache",
"e2e:update-snapshots": "nx run ng2-charts-demo:e2e:update-snapshots --skip-nx-cache",
"lint": "nx run-many --target=lint --verbose --all",
"prepare": "husky"
},
"private": true,
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@angular/animations": "18.2.9",
"@angular/cdk": "18.2.9",
"@angular/common": "18.2.9",
"@angular/compiler": "18.2.9",
"@angular/core": "18.2.9",
"@angular/forms": "18.2.9",
"@angular/material": "18.2.9",
"@angular/platform-browser": "18.2.9",
"@angular/platform-browser-dynamic": "18.2.9",
"@angular/router": "18.2.9",
"@nx/angular": "20.1.2",
"chart.js": "^4.0.1",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-chart-financial": "^0.2.0",
"chartjs-plugin-annotation": "^3.0.0",
"chartjs-plugin-datalabels": "^2.1.0",
"core-js": "^3.23.5",
"date-fns": "^3.3.1",
"dompurify": "^3.2.1",
"highlight.js": "^11.6.0",
"lodash-es": "^4.17.21",
"ngx-highlightjs": "^10.0.0",
"ngx-markdown": "18.1.0",
"prismjs": "^1.29.0",
"rxjs": "^7.5.6",
"zone.js": "^0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.9",
"@angular-devkit/core": "18.2.9",
"@angular-devkit/schematics": "18.2.9",
"@angular-eslint/builder": "18.4.1",
"@angular-eslint/eslint-plugin": "18.4.1",
"@angular-eslint/eslint-plugin-template": "18.4.1",
"@angular-eslint/schematics": "18.4.1",
"@angular-eslint/template-parser": "18.4.1",
"@angular/cli": "18.2.9",
"@angular/compiler-cli": "18.2.9",
"@angular/language-service": "18.2.9",
"@nx/eslint": "20.1.2",
"@nx/eslint-plugin": "20.1.2",
"@nx/jest": "20.1.2",
"@nx/js": "20.1.2",
"@nx/playwright": "20.1.2",
"@nx/web": "20.1.2",
"@nx/workspace": "20.1.2",
"@playwright/test": "^1.42.1",
"@schematics/angular": "18.2.12",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.4.2",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-playwright": "^1.5.0",
"husky": "^9.0.10",
"jest": "^29.6.1",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"jest-preset-angular": "^14.0.4",
"jest-raw-loader": "^1.0.1",
"lint-staged": "^15.2.2",
"ng-packagr": "18.2.1",
"nx": "20.1.2",
"postcss-preset-env": "^9.1.1",
"postcss-url": "^10.1.3",
"prettier": "^3.0.2",
"raw-loader": "^4.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.3.1",
"typescript": "^5.4.2"
},
"overrides": {
"chart.js": "^4.0.1"
}
}