-
Notifications
You must be signed in to change notification settings - Fork 575
/
package.json
116 lines (116 loc) · 3.83 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
{
"name": "ng2-charts-demo",
"version": "^1.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
"ng": "nx",
"nx": "nx",
"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",
"dev:ssr": "ng run ng2-charts-demo:serve-ssr",
"serve:ssr": "node dist/apps/ng2-charts-demo/server/server.mjs",
"build:ssr": "ng build && ng run ng2-charts-demo:server"
},
"private": true,
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@angular/animations": "19.0.5",
"@angular/cdk": "19.0.4",
"@angular/common": "19.0.5",
"@angular/compiler": "19.0.5",
"@angular/core": "19.0.5",
"@angular/forms": "19.0.5",
"@angular/material": "19.0.4",
"@angular/platform-browser": "19.0.5",
"@angular/platform-browser-dynamic": "19.0.5",
"@angular/platform-server": "19.0.5",
"@angular/router": "19.0.5",
"@angular/ssr": "19.0.6",
"@nx/angular": "20.2.0",
"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",
"express": "^4.18.2",
"highlight.js": "^11.6.0",
"lodash-es": "^4.17.21",
"ngx-highlightjs": "^10.0.0",
"ngx-markdown": "19.0.0",
"prismjs": "^1.29.0",
"rxjs": "^7.5.6",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.0.6",
"@angular-devkit/core": "19.0.5",
"@angular-devkit/schematics": "19.0.5",
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/cli": "19.0.5",
"@angular/compiler-cli": "19.0.5",
"@angular/language-service": "19.0.5",
"@nx/eslint": "20.2.0",
"@nx/eslint-plugin": "20.2.0",
"@nx/jest": "20.2.0",
"@nx/js": "20.2.0",
"@nx/playwright": "20.2.0",
"@nx/web": "20.2.0",
"@nx/workspace": "20.2.0",
"@playwright/test": "^1.42.1",
"@schematics/angular": "18.2.12",
"@types/express": "^4.17.17",
"@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",
"browser-sync": "^3.0.3",
"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": "19.0.1",
"nx": "20.2.0",
"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.5.4"
},
"overrides": {
"chart.js": "^4.0.1"
}
}