mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-05 03:05:40 -05:00
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"author": "freeCodeCamp <team@freecodecamp.org>",
|
|
"bugs": {
|
|
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cookie": "^8.3.0",
|
|
"@fastify/middie": "8.1",
|
|
"@fastify/session": "^10.1.1",
|
|
"@prisma/client": "4.10.1",
|
|
"connect-mongo": "4.6.0",
|
|
"fastify": "4.14.1",
|
|
"fastify-auth0-verify": "^1.0.0",
|
|
"fastify-plugin": "^4.3.0",
|
|
"nodemon": "2.0.21"
|
|
},
|
|
"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",
|
|
"prisma": "MONGOHQ_URL=mongodb://localhost:27017/freecodecamp?directConnection=true prisma",
|
|
"postinstall": "prisma generate"
|
|
},
|
|
"version": "0.0.1",
|
|
"devDependencies": {
|
|
"prisma": "4.10.1"
|
|
}
|
|
}
|