-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 882 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 882 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
34
35
{
"type": "module",
"name": "report-of-the-week-api",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node --test test/**/*.test.js",
"start": "fastify start -l info -a 0.0.0.0 -p 5000 app.js",
"dev": "fastify start -w -l info -P app.js",
"pretest": "standard",
"lint": "standard --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/autoload": "^6.3.1",
"@fastify/sensible": "^6.0.4",
"@fastify/static": "^9.0.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"fastify": "^5.8.4",
"fastify-cli": "^7.4.1",
"fastify-plugin": "^5.1.0",
"lowdb": "^7.0.1"
},
"devDependencies": {
"c8": "^11.0.0",
"standard": "^17.0.0"
}
}