* feat: show open boilerplate prs on dashboard fix: rest of boilerplate server changes fix: more fix: other * fix: update lib functions * fix: retrofitted one-off scripts * feat: added rateLimit for requests * fix: reduce time * fix: put limiter inside each route * fix: make client show when rated limited * fix: removed unused probot from app * fix: renamed folders * fix: consolidate config.js and constants.js * chore: update octokit to latest version * fix: remove invalid file * fix: refactored update-db.js * feat: add fcc logo * fix: logo url * fix: remove Home link * fix: change link colors * fix: added rate limiter to landing page * fix: ran npm install in client to create package-lock.json * fix: correct typo in doc Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com> * fix: Replace favicon, Gitter => Discord Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> * fix: add extra linting guidance to package.json * Ignore contributor app Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> * fix: revert linting rules for client * fix: add skip_preflight_check=true for tests Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Kris Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "@freecodecamp/contributer-tools",
|
|
"description": "Tools to help maintain freecodecamp.org's Open Source Codebase on GitHub",
|
|
"scripts": {
|
|
"bootstrap": "lerna bootstrap --ci",
|
|
"build": "lerna run build",
|
|
"postinstall": "npm run bootstrap",
|
|
"test": "run-p test:*",
|
|
"test:client": "cd ./dashboard-app/client && npm run test",
|
|
"format": "prettier --write es5 ./**/*.{js,json} && npm run lint",
|
|
"lint": "eslint ./**/*.js --fix",
|
|
"start": "cd dashboard-app/server && npm start",
|
|
"develop": "run-p develop:*",
|
|
"develop:client": "cd ./dashboard-app/client && npm run develop",
|
|
"develop:server": "cd ./dashboard-app/server && npm run develop"
|
|
},
|
|
"devDependencies": {
|
|
"dotenv": "^8.2.0",
|
|
"eslint": "^5.9.0",
|
|
"joi": "^14.3.1",
|
|
"lerna": "^3.5.1",
|
|
"mocha": "^5.2.0",
|
|
"nodemon": "^1.18.9",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^1.15.2"
|
|
},
|
|
"nodemonConfig": {
|
|
"exec": "npm start",
|
|
"watch": [
|
|
".env",
|
|
"."
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"ajv": "^6.6.1",
|
|
"ajv-keywords": "^3.2.0"
|
|
}
|
|
}
|