-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 957 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 957 Bytes
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
{
"name": "node-api-example",
"version": "1.0.0",
"description": "",
"author": {
"name": "Rafael Drigo",
"email": "rafaeldrigo.rds@gmail.com"
},
"scripts": {
"build": "tsc && tsc-alias",
"dev": "tsx watch --env-file=.env src/main.ts",
"format": "prettier . --write",
"lint": "eslint .",
"start": "node --env-file=.env dist/main.js"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@types/node": "22.3.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "16.2.0",
"prettier": "3.3.3",
"tsc-alias": "1.8.16",
"tsx": "4.17.0",
"typescript": "5.5.4",
"typescript-eslint": "8.15.0"
},
"dependencies": {
"@fastify/cors": "10.0.1",
"@fastify/helmet": "12.0.1",
"@fastify/rate-limit": "10.2.1",
"fastify": "5.1.0",
"fastify-metrics": "12.1.0",
"pino-pretty": "13.0.0",
"zod": "3.25.67"
}
}