-
Notifications
You must be signed in to change notification settings - Fork 263
/
package.json
84 lines (84 loc) · 2.44 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
{
"name": "highcharts-export-server",
"author": "Highsoft AS <[email protected]> (http://www.highcharts.com/about)",
"license": "MIT",
"type": "module",
"version": "4.0.3",
"main": "./dist/index.esm.js",
"engines": {
"node": ">=18.12.0"
},
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"bin",
"templates",
"install.js",
"lib",
"msg",
"public"
],
"repository": {
"url": "https://github.com/highcharts/node-export-server",
"type": "git"
},
"bin": {
"highcharts-export-server": "./bin/cli.js"
},
"scripts": {
"install": "node ./install.js",
"prestart": "rm -rf tmp || del -rf tmp /Q && node ./node_modules/puppeteer/install.mjs",
"start": "node ./bin/cli.js --enableServer 1 --logLevel 2",
"start:dev": "nodemon ./bin/cli.js --enableServer 1 --logLevel 4",
"start:debug": "node --inspect-brk=9229 ./bin/cli.js --enableDebug 1 --enableServer 1 --logLevel 4",
"lint": "eslint ./ --fix",
"cli-tests": "node ./tests/cli/cli_test_runner.js",
"cli-tests-single": "node ./tests/cli/cli_test_runner_single.js",
"http-tests": "node ./tests/http/http_test_runner.js",
"http-tests-single": "node ./tests/http/http_test_runner_single.js",
"node-tests": "node ./tests/node/node_test_runner.js",
"node-tests-single": "node ./tests/node/node_test_runner_single.js",
"prepare": "husky || true",
"prepack": "npm run build",
"build": "rollup -c",
"unit:test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"rollup": "^4.18.0"
},
"dependencies": {
"colors": "1.4.0",
"cors": "^2.8.5",
"dompurify": "^3.1.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"https-proxy-agent": "^7.0.5",
"jsdom": "^24.1.0",
"multer": "^1.4.5-lts.1",
"prompts": "^2.4.2",
"puppeteer": "^23.5.3",
"tarn": "^3.0.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"lint-staged": {
"*.js": "npx eslint --cache --fix",
"*.{js,css,md}": "npx prettier --write"
}
}