Files
freeCodeCamp/tools/challenge-editor/api/package.json
2026-01-19 19:05:27 +05:30

30 lines
762 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",
"type-check": "tsc --noEmit"
},
"author": "freeCodeCamp",
"license": "BSD-3-Clause",
"dependencies": {
"cors": "2.8.5",
"express": "4.18.2",
"gray-matter": "4.0.3"
},
"devDependencies": {
"@freecodecamp/eslint-config": "workspace:*",
"@total-typescript/ts-reset": "^0.6.1",
"@types/cors": "^2.8.13",
"@types/express": "4.17.21",
"dotenv": "16.4.5",
"eslint": "^9.39.1",
"shx": "0.3.4",
"typescript": "5.9.3"
}
}