-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
64 lines (64 loc) · 1.64 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
{
"name": "@highcharts/highcharts-utils",
"version": "0.0.0",
"type": "module",
"private": true,
"scripts": {
"kill": "sudo kill -9 $(sudo lsof -t -i:3030) && sudo kill -9 $(sudo lsof -t -i:3031)",
"dev": "nodemon ./server",
"start": "sudo node ./server",
"precommit": "lint-staged",
"demodata": "node ./utils/demo-data"
},
"bin": "./bin/cli.js",
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@highcharts/map-collection": "^2.0.0",
"@octokit/rest": "^18.3.5",
"async-exit-hook": "^2.0.1",
"body-parser": "^1.20.0",
"browser-detect": "^0.2.28",
"child-process": "^1.0.2",
"colors": "^1.4.0",
"compare-versions": "^4.1.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"current-git-branch": "^1.1.0",
"debug": "~4.3.4",
"dotenv": "16.4.2",
"esbuild": "0.19.5",
"esbuild-plugin-replace-regex": "^0.0.2",
"eslint": "^9.17.0",
"eslint-linter-browserify": "^9.7.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"glob": "^8.0.1",
"hbs": "^4.2.0",
"highcharts": "^12.1.2",
"hostile": "^1.3.3",
"http-proxy": "^1.18.1",
"husky": "^7.0.4",
"ip": "^1.1.5",
"js-yaml": "^4.1.0",
"jsdom": "^19.0.0",
"jszip": "^3.9.1",
"less-middleware": "^2.2.1",
"lint-staged": "^12.3.8",
"marked": "^15.0.4",
"moment": "^2.29.3",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"semver": "^7.5.4",
"serve-favicon": "~2.5.0",
"simple-git": "^3.7.0",
"ws": "^8.5.0",
"yargs": "^17.4.1"
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
}
}