-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 972 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
{
"name": "afs-fastify-template",
"version": "1.0.0",
"description": "Template Repo for Fastify Server Projects",
"main": "dist/app.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/app.ts",
"lint": "biome lint ./src",
"format": "biome format ./src --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/afscottmsp/AFS-Fastify-Template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/afscottmsp/AFS-Fastify-Template/issues"
},
"homepage": "https://github.com/afscottmsp/AFS-Fastify-Template#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.13.13",
"@types/pino": "^7.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"@sinclair/typebox": "^0.34.31",
"fastify": "^5.2.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0"
}
}