forked from valor-software/ng2-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.33 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
{
"name": "ng2-charts-demo",
"version": "1.0.0",
"scripts": {
"demo.deploy-gh-pages": "gh-pages -d dist/ng2-charts-demo",
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production --deploy-url /ng2-charts/ --base-href /ng2-charts",
"build:lib": "ng build --configuration production ng2-charts",
"build:schematics": "cd projects/ng2-charts && npm run build && cd ../..",
"build:changelog": "github_changelog_generator -u valor-software -p ng2-charts",
"publish:lib": "npm publish dist/ng2-charts",
"test": "ng test",
"test:ci": "ng test --watch=false --no-progress --browsers=ChromeHeadless",
"test:schematics": "ts-node --project projects/ng2-charts/tsconfig.schematics.json node_modules/jasmine/bin/jasmine projects/ng2-charts/schematics/**/*.spec.ts",
"e2e": "ng e2e --watch",
"e2e:ci": "ng e2e --headless true",
"e2e:update-snapshots": "npm run e2e -- --configuration update-snapshots",
"cy:verify": "cypress verify",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.0.4",
"@angular/cdk": "^12.0.4",
"@angular/common": "^12.0.4",
"@angular/compiler": "^12.0.4",
"@angular/core": "^12.0.4",
"@angular/forms": "^12.0.4",
"@angular/material": "^12.0.4",
"@angular/platform-browser": "^12.0.4",
"@angular/platform-browser-dynamic": "^12.0.4",
"@angular/router": "^12.0.4",
"chart.js": "^3.3.2",
"chartjs-adapter-date-fns": "^2.0.0",
"chartjs-chart-financial": "github:santam85/chartjs-chart-financial#with-dist",
"chartjs-plugin-annotation": "^1.0.2",
"chartjs-plugin-datalabels": "^2.0.0-rc.1",
"core-js": "^3.14.0",
"date-fns": "^2.22.1",
"highlight.js": "^10.7.3",
"lodash-es": "^4.17.21",
"ngx-highlightjs": "^4.1.4",
"ngx-markdown": "^12.0.1",
"prismjs": "^1.23.0",
"rxjs": "^6.6.7",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.0.4",
"@angular-devkit/core": "^12.0.4",
"@angular-devkit/schematics": "^12.0.4",
"@angular-eslint/builder": "^12.1.0",
"@angular-eslint/eslint-plugin": "^12.1.0",
"@angular-eslint/eslint-plugin-template": "^12.1.0",
"@angular-eslint/schematics": "^12.1.0",
"@angular-eslint/template-parser": "^12.1.0",
"@angular/cli": "^12.0.4",
"@angular/compiler-cli": "^12.0.4",
"@angular/language-service": "^12.0.4",
"@nrwl/cypress": "^12.3.6",
"@nrwl/workspace": "^12.3.6",
"@schematics/angular": "^12.0.4",
"@types/jasmine": "^3.7.7",
"@types/jasminewd2": "~2.0.8",
"@types/lodash-es": "^4.17.4",
"@types/luxon": "^1.27.0",
"@types/node": "^14.17.3",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"cypress": "^6.9.1",
"cypress-image-snapshot": "^4.0.1",
"eslint": "^7.28.0",
"eyes.images": "^3.8.7",
"gh-pages": "^3.2.0",
"jasmine": "^3.7.0",
"jasmine-core": "~3.7.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^12.0.5",
"ts-node": "^9.0.0",
"tslib": "^2.3.0",
"typescript": "~4.2.4",
"wait-on": "^5.3.0"
}
}