-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
39 lines (39 loc) · 1002 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
38
39
{
"name": "rest-api-fastify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node --trace-warnings ./src/start.js",
"dev": "nodemon ./src/start.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"fastify": "^3.0.0",
"fastify-express": "^0.3.0",
"fastify-mongodb": "^4.0.0",
"fastify-plugin": "^3.0.0",
"fastify-swagger": "^4.0.0",
"knex": "^0.95.0",
"mongodb": "^4.0.0",
"mysql": "^2.17.1",
"pino-pretty": "^7.0.0"
},
"devDependencies": {
"eslint": "8.6.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.2.0",
"eslint-plugin-standard": "4.1.0",
"nodemon": "2.0.15"
}
}