mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-24 20:00:39 -04:00
* feat(next-api): add fastify-auth0-verify plugin * feat(next-api): add fastify-jwt-authz plugin * feat(next-api): accept privacy endpoint with scopes support * fix(next-api): ignore eslint and ts errors They will be fixed in a future PR when the package with errors has been updated Co-authored-by: Niraj Nandish <nirajnandish@icloud.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"author": "freeCodeCamp <team@freecodecamp.org>",
|
|
"bugs": {
|
|
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/middie": "8.1",
|
|
"@fastify/mongodb": "6.1.0",
|
|
"fastify": "4.9.2",
|
|
"fastify-auth0-verify": "^1.0.0",
|
|
"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",
|
|
"develop": "nodemon index.ts",
|
|
"start": "NODE_ENV=production node index.js",
|
|
"test": "node --test -r ts-node/register **/*.test.ts"
|
|
},
|
|
"version": "0.0.1"
|
|
}
|