summary refs log tree commit diff
path: root/pkgs/servers/monitoring/grafana-image-renderer/package.json
blob: 0e22150e0e22b39d62ad50e2d9ddb81ed203d3ba (plain) (blame)
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
{
  "name": "renderer",
  "version": "1.0.0",
  "author": "Grafana Labs",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "http://github.com/grafana/grafana-image-renderer.git"
  },
  "scripts": {
    "eslint": "eslint . --ext .ts",
    "typecheck": "tsc --noEmit",
    "prettier:check": "prettier --list-different \"**/*.ts\"",
    "prettier:write": "prettier --list-different \"**/*.ts\" --write",
    "precommit": "npm run eslint & npm run typecheck",
    "watch": "tsc-watch --onSuccess \"node build/app.js server --config=dev.json\"",
    "watch:debug": "tsc-watch --onSuccess \"cross-env DEBUG=puppeteer-cluster:* node build/app.js server --config=dev.json\"",
    "build": "tsc",
    "start": "node build/app.js --config=dev.json"
  },
  "dependencies": {
    "@grpc/grpc-js": "^1.0",
    "@grpc/proto-loader": "^0.5.4",
    "@hapi/boom": "^9.1.0",
    "chokidar": "^3.5.2",
    "express": "^4.16.3",
    "express-prom-bundle": "^5.1.5",
    "google-protobuf": "3.5.0",
    "lodash": "^4.17.21",
    "minimist": "^1.2.0",
    "morgan": "^1.9.0",
    "on-finished": "^2.3.0",
    "prom-client": "^11.5.3",
    "puppeteer": "^13.1.3",
    "puppeteer-cluster": "^0.22.0",
    "poolpeteer": "^0.22.0",
    "sharp": "0.29.3",
    "unique-filename": "^1.1.0",
    "winston": "^3.2.1"
  },
  "devDependencies": {
    "@grafana/eslint-config": "^2.5.0",
    "@types/express": "^4.11.1",
    "@types/node": "^14.14.41",
    "cross-env": "7.0.3",
    "@typescript-eslint/eslint-plugin": "^4.32.0",
    "@typescript-eslint/parser": "^4.32.0",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-jsdoc": "^36.1.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-react": "^7.26.1",
    "eslint-plugin-react-hooks": "^4.2.0",
    "husky": "^4.3.8",
    "lint-staged": "^11.2.0",
    "pkg": "5.5.2",
    "prettier": "2.2.1",
    "tsc-watch": "^4.2.3",
    "typescript": "^4.3.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && npm run precommit"
    }
  },
  "lint-staged": {
    "*.ts": [
      "prettier --write"
    ]
  },
  "pkg": {
    "assets": "proto/*"
  },
  "bin": "build/app.js",
  "engines": {
    "node": ">=14 <=16"
  },
  "volta": {
    "node": "14.16.1"
  }
}