this repo has no description
1{
2 "name": "name-goes-here",
3 "version": "1.0.0",
4 "description": "description-goes-here",
5 "main": "src/index.ts",
6 "type": "module",
7 "scripts": {
8 "start": "bunx tsx src/index.ts",
9 "dev": "bunx --watch src/index.ts",
10 "format": "bunx prettier --write .",
11 "lint": "bunx eslint .",
12 "lint:fix": "bunx eslint --fix .",
13 "prepare": "husky"
14 },
15 "dependencies": {
16 "dotenv": "^16.5.0",
17 "fastify": "^5.3.3",
18 "husky": "^9.1.7",
19 "lint-staged": "^16.0.0",
20 "pino": "^9.7.0",
21 "pino-pretty": "^13.0.0",
22 "prom-client": "^15.1.3"
23 },
24 "devDependencies": {
25 "@eslint/js": "^9.27.0",
26 "@trivago/prettier-plugin-sort-imports": "^5.2.2",
27 "@types/eslint__js": "^9.14.0",
28 "@types/node": "^22.15.21",
29 "eslint": "^9.27.0",
30 "prettier": "^3.5.3",
31 "tsx": "^4.19.4",
32 "typescript": "^5.8.3",
33 "typescript-eslint": "^8.32.1"
34 },
35 "lint-staged": {
36 "*": "prettier --ignore-unknown --write --ignore-path .prettierignore"
37 },
38 "author": "alice",
39 "license": "MIT"
40}