forked from typpo/quickchart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.22 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
{
"name": "quickchart",
"version": "1.6.0",
"main": "index.js",
"license": "AGPL-3.0",
"homepage": "https://quickchart.io/",
"repository": {
"type": "git",
"url": "https://github.com/typpo/quickchart.git"
},
"scripts": {
"start": "node --max-http-header-size=65536 index.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --single-quote --trailing-comma all --print-width 100 --write \"**/*.js\"",
"test": "PORT=3401 NODE_ENV=test mocha --exit --recursive test/ci/",
"test:watch": "PORT=2998 NODE_ENV=test chokidar '**/*.js' --initial --ignore node_modules -c 'mocha --exit --recursive test/'"
},
"dependencies": {
"bunyan": "^1.8.12",
"canvas": "^2.8.0",
"canvas-5-polyfill": "^0.1.5",
"chart.js": "^2.9.4",
"chart.js-v3": "npm:chart.js@3.6.0",
"chartjs-adapter-moment": "https://github.com/typpo/chartjs-adapter-moment.git#e9bc92ab6e0e500c91c4a9871db7b14d15b5c2e7",
"chartjs-chart-box-and-violin-plot": "^2.4.0",
"chartjs-chart-radial-gauge": "^1.0.3",
"chartjs-node-canvas": "^3.0.6",
"chartjs-plugin-annotation": "^0.5.7",
"chartjs-plugin-colorschemes": "https://github.com/typpo/chartjs-plugin-colorschemes.git#979ef8e599265f65c85d5dae90b543d5589c734a",
"chartjs-plugin-datalabels": "^0.5.0",
"chartjs-plugin-doughnutlabel": "^2.0.3",
"chartjs-plugin-piechart-outlabels": "^0.1.4",
"deepmerge": "^4.2.2",
"express": "^4.16.4",
"express-rate-limit": "^5.0.0",
"javascript-stringify": "^2.0.0",
"patternomaly": "^1.3.2",
"pdfkit": "^0.10.0",
"qrcode": "^1.3.3",
"qs": "^6.7.0",
"request": "^2.88.0",
"sharp": "^0.30.5",
"text2png": "^2.1.0",
"viz.js": "^2.1.2",
"vm2": "^3.9.6"
},
"devDependencies": {
"@arkweid/lefthook": "^0.6.3",
"artillery": "^1.7.9",
"chokidar-cli": "^2.0.0",
"color-thief": "^2.2.5",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"image-size": "^0.8.3",
"jimp": "^0.13.0",
"mocha": "^6.2.2",
"pixelmatch": "^5.1.0",
"prettier": "^1.18.2",
"qrcode-reader": "^1.0.4",
"supertest": "^4.0.2"
},
"peerDependencies": {
"chart.js": ">= 2.0.0"
}
}