-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 904 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
{
"name": "fastify-awilix-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for building web applications with Fastify and dependency injection",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --no-warnings index.js",
"test": "node --no-warnings --experimental-test-coverage --test __tests__/"
},
"keywords": [],
"author": "Erdem Köşk <[email protected]>",
"license": "ISC",
"dependencies": {
"@fastify/awilix": "^5.1.0",
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"awilix": "^10.0.1",
"axios": "^1.6.8",
"dotenv": "^16.4.5",
"fastify": "^4.26.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1"
}
}