-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 896 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 896 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
{
"name": "fastify-boilerplate",
"version": "1.0.0",
"description": "A simple Fastify boilerplate",
"main": "index.js",
"scripts": {
"test": "npm test",
"lint": "./node_modules/.bin/eslint . --fix",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pablitovicente/fastify-boilerplate.git"
},
"author": "Pablito Vicente",
"license": "MIT",
"bugs": {
"url": "https://github.com/pablitovicente/fastify-boilerplate/issues"
},
"homepage": "https://github.com/pablitovicente/fastify-boilerplate#readme",
"dependencies": {
"fastify": "^3.25.3",
"fastify-helmet": "^5.3.2",
"fastify-jwt": "^4.1.3",
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"@types/node": "^17.0.8",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4"
}
}