freeCodeCamp/curriculum-server/package.json

34 lines
879 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",
"npm": ">=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.0"
},
"devDependencies": {
"ts-node": "10.8.1",
"typescript": "4.7.3"
}
}