-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 936 Bytes
/
package.json
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": "fastify-boilerplate-app",
"type": "module",
"version": "1.0.0",
"description": "A boilerplate for a fastify backend. Individual components of this have potential as publishable plugins.",
"main": "src/app.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"start": "node dist/app.js"
},
"keywords": [
"fastify",
"design",
"patterns",
"boilerplate"
],
"author": "Frank Wazeter",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.8.0",
"@fastify/env": "^4.3.0",
"@fastify/mongodb": "^8.0.0",
"@fastify/type-provider-json-schema-to-ts": "^2.2.2",
"fastify": "^4.25.2",
"fastify-plugin": "^4.5.1",
"fluent-json-schema": "^4.2.1"
},
"devDependencies": {
"@types/node": "^20.11.5",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
},
"exports": {
"import": "./dist/app.js",
"require": "./dist/app.js"
}
}