-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.77 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.77 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "fastify-boilerplate",
"version": "1.0.0",
"description": "Fastify boilerplate for my REST projects with MongoDB, Swagger, CORS and more",
"main": "app.js",
"engines": {
"node": ">=25"
},
"directories": {
"test": "test",
"doc": "docs"
},
"scripts": {
"start": "fastify start -l info --options app.js",
"dev": "fastify start --watch --pretty-logs --debug --options app.js",
"dev:trace": "node --trace-warnings node_modules/.bin/fastify start --options app.js",
"test": "node test/run-tests.js",
"test:ci": "node --test test/**/*.test.js",
"test:makefile": "node --test test/makefile-bootstrap.test.js",
"test:nostop": "node test/run-tests.js --nostop",
"test:coverage": "node test/run-tests.js --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"migrate": "migrate-mongo up",
"migrate:down": "migrate-mongo down",
"migrate:status": "migrate-mongo status",
"migrate:create": "migrate-mongo create"
},
"keywords": [
"fastify",
"fastify-cli",
"fastify-boilerplate",
"boilerplate",
"mongodb",
"rest",
"api"
],
"author": "Bohdan Trybel <bogdan.trybel@gmail.com> (https://github.com/tryb3l)",
"repository": {
"type": "git",
"url": "git+https://github.com/tryb3l/fastify-boilerplate.git"
},
"license": "ISC",
"dependencies": {
"@fastify/auth": "^5.0.4",
"@fastify/autoload": "^6.3.1",
"@fastify/caching": "^9.0.3",
"@fastify/compress": "^8.3.1",
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "11.2.0",
"@fastify/csrf-protection": "^7.1.0",
"@fastify/env": "^6.0.0",
"@fastify/helmet": "^13.0.2",
"@fastify/jwt": "^10.0.0",
"@fastify/mongodb": "^10.0.0",
"@fastify/multipart": "10.0.0",
"@fastify/rate-limit": "^10.3.0",
"@fastify/restartable": "^3.0.2",
"@fastify/sensible": "^6.0.4",
"@fastify/static": "^9.1.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "5.2.5",
"@fastify/under-pressure": "^9.0.3",
"@fastify/websocket": "^11.2.0",
"argon2": "^0.44.0",
"close-with-grace": "^2.5.0",
"csv-parse": "^6.2.1",
"csv-stringify": "^6.7.0",
"fast-json-stringify": "^6.3.0",
"fastify": "5.8.4",
"fastify-cli": "^8.0.0",
"fastify-metrics": "^13.2.0",
"fastify-plugin": "^5.1.0",
"fastify-secrets-env": "^3.0.0",
"file-type": "^22.0.1",
"fluent-json-schema": "^6.0.0",
"migrate-mongo": "^14.0.7",
"nodemailer": "^8.0.5",
"split2": "^4.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"dockerode": "^4.0.10",
"eslint": "10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"form-data": "^4.0.5",
"globals": "^17.4.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.2"
}
}