Files
freeCodeCamp/tools/challenge-editor/api/package.json
2025-11-21 19:21:46 +05:30

29 lines
728 B
JSON

{
"name": "@freecodecamp/challenge-editor-api",
"version": "1.0.0",
"private": true,
"description": "Editor to help with new challenge structure",
"scripts": {
"start": "tsx server.ts",
"postinstall": "shx cp ./sample.env ./.env",
"lint": "eslint --max-warnings 0"
},
"author": "freeCodeCamp",
"license": "BSD-3-Clause",
"dependencies": {
"cors": "2.8.5",
"express": "4.18.2",
"gray-matter": "4.0.3"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@freecodecamp/eslint-config": "workspace:*",
"@types/cors": "^2.8.13",
"@types/express": "4.17.21",
"dotenv": "16.4.5",
"eslint": "^9.39.1",
"shx": "0.3.4",
"typescript": "5.2.2"
}
}