* feat: allow more 1000 steps to be created at once * refactor: start migrating to typescript * refactor: delete-step to ts * refactor: migrated some helpers * refactor: migrate create-empty-steps * refactor: migrate create-step-between * refactor: finish migrating to TS * refactor: migrate tests * fix: ensure mock.restore is done after each test * fix: prevent double-tscing * fix: repair the tests * chore: use ts-node for scripts We don't need the performance boost of incremental compilation and ts-node is easier to work with * refactor: consolidate tsconfigs * refactor: replace gulp * fix: use ts-node for build-curriculum * fix: allow ts compilation of config * feat: create and use create:config script * fix: add /config to eslint projects * fix: remove gulp script
36 lines
975 B
JSON
36 lines
975 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": ">=16",
|
|
"npm": ">=8"
|
|
},
|
|
"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/mock-fs": "^4.13.1",
|
|
"bson-objectid": "2.0.2",
|
|
"cross-env": "7.0.3",
|
|
"gray-matter": "4.0.3",
|
|
"inquirer": "8.2.0",
|
|
"prettier": "2.5.1",
|
|
"ts-node": "10.4.0",
|
|
"typescript": "4.5.5"
|
|
}
|
|
}
|