forked from screepers/ScreepsGrafanaV2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "screeps-grafana-go_carbon",
"version": "1.0.5",
"scripts": {
"setup": "node src/setup/setup.js setup",
"start": "node src/setup/index.js --grafanaPort=3000",
"start:test": "node src/setup/index.js --grafanaPort=3000 --force",
"lint": "eslint src/**/*.js && eslint dashboards/**/*.js",
"lint:fix": "eslint src/**/* --fix && eslint dashboards/**/*.js --fix",
"update-stats-getter": "docker-compose up --detach --build"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"fs-extra": "^11.1.0",
"get-port-please": "^3.0.1",
"minimist": "^1.2.7",
"winston": "^3.8.1"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0"
},
"bin": {
"screeps-grafana-go_carbon": "./bin/setup.js"
},
"files": [
"src",
"dashboards",
"grafanaConfig.example",
"users.example.json",
"docker-compose.example.yml",
"example.env",
".dockerignore",
"go-carbon-storage"
]
}