-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 717 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 717 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
{
"name": "fastify-starter",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "tsx watch --env-file=.env src/index.ts"
},
"engines": {
"node": "~20.9.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/postgres": "^5.2.2",
"@fastify/swagger": "^8.12.0",
"@fastify/type-provider-typebox": "^3.5.0",
"@sinclair/typebox": "^0.31.25",
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"fastify": "^4.24.3",
"pg": "^8.11.3"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/convict": "^6.1.6",
"@types/pg": "^8.10.9",
"tsx": "^4.1.3",
"typescript": "^5.2.2"
}
}