-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.46 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
{
"type": "module",
"name": "ipfs-metrics-collector",
"version": "0.0.0",
"description": "service that receives events from ipfs-elastic-provider and keeps track of metrics useful for system monitoring",
"main": "index.js",
"scripts": {
"lint": "eslint 'src/**/*.js'",
"lint:fix": "npm run lint -- --fix",
"test": "NODE_OPTIONS='--experimental-vm-modules' c8 ava",
"typecheck": "tsc --build tsconfig.json",
"build:indexer-metrics-collector": "npx esbuild --bundle --sourcemap --outdir=dist/indexer-metrics-collector ./src/indexer-metrics-collector/worker.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-elastic-provider/metrics-collector.git"
},
"author": "",
"license": "Apache-2.0 OR MIT",
"bugs": {
"url": "https://github.com/ipfs-elastic-provider/metrics-collector/issues"
},
"homepage": "https://github.com/ipfs-elastic-provider/metrics-collector#readme",
"devDependencies": {
"@cloudflare/workers-types": "^3.14.0",
"@miniflare/durable-objects": "^2.5.1",
"@miniflare/storage-memory": "^2.5.1",
"@types/serviceworker": "^0.0.47",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"ava": "^4.3.0",
"c8": "^7.11.3",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-prettier": "^4.2.1",
"typescript": "^4.7.4",
"wrangler": "^2.0.16"
},
"dependencies": {
"@cfworker/json-schema": "^1.12.3",
"@types/node": "^18.0.0",
"@web-std/fetch": "^4.1.0",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"immer": "^9.0.15",
"itty-router": "^2.6.1",
"json-schema-faker": "^0.5.0-rcv.44",
"parse-prometheus-text-format": "^1.1.1",
"prom-client": "gobengo/prom-client",
"streaming-iterables": "^7.0.4"
},
"eslintConfig": {
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"standard",
"plugin:prettier/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 13,
"project": [
"./tsconfig.json"
]
},
"env": {
"es2022": true,
"browser": true,
"node": true
},
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
]
}
}
}