-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
60 lines (60 loc) · 1.71 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "docker-fastify-boilerplate",
"version": "3.1.1",
"description": "Node.js RESTful API boilerplate using Docker, Docker Compose, Fastify and Mongodb",
"main": "src/index.js",
"scripts": {
"dev": "./node_modules/nodemon/bin/nodemon.js -r dotenv/config src/index.js",
"prepare": "git config core.hooksPath .hooks",
"start": "node src/index.js",
"standard:fix": "standard --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinceladasdaweb/docker-fastify-boilerplate.git"
},
"keywords": [
"docker",
"api",
"fastify",
"mongdb"
],
"author": "Pedro Rogério",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinceladasdaweb/docker-fastify-boilerplate/issues"
},
"homepage": "https://github.com/pinceladasdaweb/docker-fastify-boilerplate#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"standard": "^17.1.2"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/jwt": "^9.0.1",
"@hapi/boom": "10.0.1",
"@sentry/node": "^8.32.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"ajv-keywords": "^5.1.0",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.5",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.1",
"http-errors": "^2.0.0",
"mongoose": "^8.8.3",
"mongoose-delete": "^1.0.2",
"mongoose-paginate-v2": "^1.8.5",
"mongoose-slug-generator": "^1.0.4",
"pino": "^9.4.0",
"pino-pretty": "^11.2.2"
},
"lint-staged": {
"src/**/*.js": "standard"
}
}