-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
66 lines (66 loc) · 2.35 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
{
"name": "@bmatei/apollo-prometheus-exporter",
"version": "0.0.0-development",
"description": "Plugin for Apollo Server to export metrics in Prometheus format",
"keywords": [
"apollo",
"apollo server",
"prometheus",
"metrics",
"tracing"
],
"author": "Bogdan Matei <bogdan@matei.dev>",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/bfmatei/apollo-prometheus-exporter#readme",
"repository": "github:bfmatei/apollo-prometheus-exporter",
"scripts": {
"postinstall": "husky install",
"start": "yarn example:start:watch",
"build": "yarn lib:build",
"release": "yarn lib:release",
"prettier": "prettier --write \"./**/*.{ts,json,graphql,yaml,md}\"",
"lint-staged": "lint-staged",
"example:clean-dist": "rimraf dist_example",
"example:codegen": "graphql-codegen",
"example:compile": "tsc -p example/tsconfig.json",
"example:build": "run-s example:clean-dist example:codegen example:compile",
"example:serve": "ts-node -P example/tsconfig.json example/src/index.ts",
"example:start": "run-s example:codegen example:serve",
"example:start:watch": "nodemon --watch example --watch lib -e ts,graphql,json --exec 'yarn example:start'",
"example:simulate-activity": "artillery run artillery.yaml",
"lib:clean-dist": "rimraf dist",
"lib:compile": "tsc -p lib/tsconfig.json",
"lib:build": "run-s lib:clean-dist lib:compile lib:copy-assets",
"lib:copy-assets": "copyfiles -f lib/package.json README.md dist",
"lib:release": "semantic-release"
},
"devDependencies": {
"@apollo/server": "^4.0.2",
"@graphql-codegen/cli": "^2.13.7",
"@graphql-codegen/typescript": "^2.7.5",
"@graphql-codegen/typescript-resolvers": "^2.7.5",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@types/node": "^16.11.3",
"@types/uuid": "^8.3.1",
"artillery": "^1.7.9",
"body-parser": "^1.20.1",
"copyfiles": "^2.4.1",
"express": "^4.17.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"husky": "^7.0.4",
"lint-staged": "^11.2.3",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prom-client": "^14.0.0",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"uuid": "^8.3.2"
},
"dependencies": {}
}