-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "s3-prometheus-exporter",
"version": "0.5.2",
"description": "S3 data exporter for prometheus",
"author": "Tchoupinax <[email protected]> (https://corentinfiloche.xyz)",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Tchoupinax/s3-exporter"
},
"bugs": {
"url": "https://github.com/Tchoupinax/s3-exporter/issues"
},
"scripts": {
"build": "tsc",
"lint": "yarn lint:eslint && prettier --write .",
"lint:eslint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint:fix": "yarn lint:eslint --fix && prettier --write .",
"lint:inspect": "npx @eslint/config-inspector@latest",
"lint:prettier": "prettier . --check",
"s3": "docker compose up -d",
"security": "trivy fs --security-checks vuln,config .",
"test": "vitest",
"watch": "nodemon --exec vite-node --options.deps.inline=\"@aws-sdk\" src/index.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "3.729.0",
"config": "3.3.12",
"fastify": "5.2.1",
"moment": "2.30.1",
"pino": "9.6.0",
"pino-pretty": "13.0.0",
"pretty-bytes": "6.1.1",
"prom-client": "15.1.3",
"vite-node": "2.1.8",
"vitest": "2.1.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/config": "3.3.5",
"@types/node": "22.10.6",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"esbuild-plugin-tsc": "0.4.0",
"eslint": "9",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-unused-imports": "4.1.4",
"nodemon": "3.1.9",
"prettier": "3.4.2",
"typescript": "5.7.3",
"typescript-eslint": "^8.18.2"
}
}