Files
freeCodeCamp/tools/challenge-helper-scripts/package.json
Oliver Eyton-Williams bd4d46915a feat(curriculum): add project creation tool (#42410)
* refactor: extract help category map as JSON

* refactor: extract block names as json

* feat: add create-project script

* fix: correct case for tsconfig target

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
2021-06-09 00:57:45 +05:30

36 lines
989 B
JSON

{
"name": "@freecodecamp/curriculum-helper-scripts",
"version": "0.0.0-next.1",
"description": "freeCodeCamp's project-based curriculum scripts",
"license": "(BSD-3-Clause AND CC-BY-SA-4.0)",
"private": true,
"engines": {
"node": ">= 14.0.0",
"npm": "^6.14.12"
},
"repository": {
"type": "git",
"url": "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": "utils.js",
"scripts": {
"test": "mocha --delay --reporter progress --bail",
"create-project": "ts-node create-project"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"bson-objectid": "2.0.1",
"cross-env": "7.0.3",
"gray-matter": "4.0.3",
"inquirer": "^8.1.0",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}