Files
freeCodeCamp/api/package.json
Oliver Eyton-Williams 7572f99f74 refactor(api): remove unused endpoints (#50252)
Also adds "dev" as an alias because I keep trying to use it.
2023-05-02 19:54:05 +03:00

65 lines
1.7 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",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.5.0",
"@immobiliarelabs/fastify-sentry": "^5.0.2",
"@prisma/client": "4.13.0",
"connect-mongo": "4.6.0",
"fastify": "4.15.0",
"fastify-auth0-verify": "^1.0.0",
"fastify-plugin": "^4.3.0",
"nodemon": "2.0.22"
},
"description": "The freeCodeCamp.org open-source codebase and curriculum",
"devDependencies": {
"@fastify/type-provider-typebox": "3.1.0",
"@types/express-session": "1.17.7",
"@types/supertest": "2.0.12",
"dotenv-cli": "7.2.1",
"jest": "29.5.0",
"pino-pretty": "10.0.0",
"prisma": "4.13.0",
"supertest": "6.3.3",
"ts-jest": "29.1.0"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"homepage": "https://github.com/freeCodeCamp/freeCodeCamp#readme",
"license": "BSD-3-Clause",
"main": "none",
"name": "@freecodecamp/api",
"nodemonConfig": {
"env": {
"FREECODECAMP_NODE_ENV": "development"
},
"ignore": [
"**/*.js"
]
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/freeCodeCamp.git"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"dev": "pnpm develop",
"develop": "nodemon src/server.ts",
"start": "FREECODECAMP_NODE_ENV=production node dist/server.js",
"test": "jest --force-exit",
"prisma": "dotenv -e ../.env prisma",
"postinstall": "prisma generate"
},
"version": "0.0.1"
}