-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 982 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-js-starter-rest",
"version": "0.0.1",
"description": "Boilerplate project for bootstrapping development of a Rest API application with NodeJS and Fastify ",
"main": "app.js",
"scripts": {
"test": "tap",
"start": "node app.js",
"start-dev": "nodemon",
"lint": "eslint app.js src/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spinsage/fastify-js-starter-rest.git"
},
"keywords": [
"fastify"
],
"author": "spinsage",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/spinsage/fastify-js-starter-rest/issues"
},
"homepage": "https://github.com/spinsage/fastify-js-starter-rest#readme",
"dependencies": {
"dotenv": "^16.0.0",
"fastify": "^3.27.4",
"fastify-cors": "^6.0.3",
"moment": "^2.29.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"nodemon": "^2.0.15",
"tap": "^16.0.0"
}
}