-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
{
"name": "fastify-microservice-starter",
"version": "2.0.0",
"description": "A lean, production-ready Fastify 5 microservice boilerplate with NATS messaging",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src",
"test": "vitest run",
"test:watch": "vitest",
"bench": "tsx src/bench.ts"
},
"keywords": [
"fastify",
"microservice",
"nats",
"typescript",
"starter",
"boilerplate",
"benchmark"
],
"author": "irzix",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/irzix/fastify-microservice-starter-ts.git"
},
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/helmet": "^13.0.0",
"@fastify/rate-limit": "^10.2.0",
"fastify": "^5.2.1",
"nats": "^2.29.1"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.12.0",
"autocannon": "^8.0.0",
"eslint": "^9.19.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.5"
},
"engines": {
"node": ">=22.0.0"
}
}