Files
freeCodeCamp/curriculum-server/package.json
renovate[bot] 87e1ae21a5 chore: update TS and Fastify (#52157)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Sboonny <muhammedelruby@gmail.com>
Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2023-11-07 17:22:59 +05:30

34 lines
878 B
JSON

{
"name": "@freecodecamp/curriculum-server",
"version": "0.0.1",
"description": "Web server for curriculum data",
"license": "BSD-3-Clause",
"private": true,
"engines": {
"node": ">=16",
"pnpm": "8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freeCodeCamp/freeCodeCamp.git"
},
"bugs": {
"url": "https://github.com/freeCodeCamp/freeCodeCamp/issues"
},
"homepage": "https://github.com/freeCodeCamp/freeCodeCamp#readme",
"author": "freeCodeCamp <team@freecodecamp.org>",
"main": "none",
"scripts": {
"dev": "json-server --watch ./data/curriculum.json",
"test": "echo \"Error: no test specified\" && exit 1",
"source-curriculum": "ts-node source-curriculum.ts"
},
"dependencies": {
"json-server": "0.17.4"
},
"devDependencies": {
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}