Files
freeCodeCamp/api/package.json
T
Shaun Hamilton f7644bec68 feat(api): example middleware (#48434)
* feat(api): add middleware example

* feat(api): add `@fastify/middie`, reorder for alphabetness

* [skip-ci] [skip ci]
2023-02-24 17:25:21 +05:30

41 lines
960 B
JSON

{
"author": "freeCodeCamp <team@freecodecamp.org>",
"bugs": {
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
},
"dependencies": {
"@fastify/middie": "8.0.0",
"@fastify/mongodb": "6.1.0",
"fastify": "4.9.2",
"fastify-plugin": "4.3.0"
},
"description": "The freeCodeCamp.org open-source codebase and curriculum",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"homepage": "https://github.com/freeCodeCamp/freeCodeCamp#readme",
"license": "BSD-3-Clause",
"main": "none",
"name": "@freecodecamp/api",
"nodemonConfig": {
"env": {
"NODE_ENV": "development"
},
"ignore": [
"**/*.js"
]
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/freeCodeCamp.git"
},
"scripts": {
"build": "tsc index.ts",
"start": "NODE_ENV=production node index.js",
"develop": "nodemon index.ts"
},
"version": "0.0.1"
}