forked from siegfriedgrimbeek/fastify-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 767 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 767 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
{
"name": "fastify-api",
"version": "1.0.0",
"description": "A blazing fast REST APIs with Node.js, MongoDB, Fastify and Swagger.",
"main": "index.js",
"scripts": {
"start": "./node_modules/nodemon/bin/nodemon.js ./src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "node ./src/helpers/seed.js"
},
"author": "Siegfried Grimbeek <siegfried.grimbeek@gmail.com> (www.siegfriedgrimbeek.co.za)",
"license": "ISC",
"dependencies": {
"@hapi/boom": "^9.1.2",
"fastify": "^3.14.0",
"fastify-gql": "^5.8.2",
"fastify-mongodb": "^2.0.1",
"fastify-swagger": "^4.4.2",
"graphql": "^15.5.0",
"mongoose": "^5.12.0"
},
"devDependencies": {
"faker": "^5.4.0",
"nodemon": "^2.0.7"
}
}