mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-11 13:00:56 -04:00
* 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>
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "@freecodecamp/contributer-tools",
|
|
"version": "1.0.0",
|
|
"license": "BSD-3-Clause",
|
|
"repository": "https://github.com/freecodecamp/dashboard.git",
|
|
"bugs": "https://github.com/freeCodeCamp/freeCodeCamp/issues",
|
|
"keywords": [
|
|
"freeCodeCamp",
|
|
"github",
|
|
"contributer tools"
|
|
],
|
|
"scripts": {
|
|
"dev": "develop",
|
|
"develop": "nodemon",
|
|
"start": "node index.js",
|
|
"lint": "standard --fix",
|
|
"test": "cross-env TEST_ENV=true jest --forceExit && standard",
|
|
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@octokit/rest": "^18.0.12",
|
|
"body-parser": "^1.18.3",
|
|
"cross-env": "^5.2.0",
|
|
"express": "^4.16.3",
|
|
"express-rate-limit": "^5.2.3",
|
|
"mongoose": "^5.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"expect": "^23.6.0",
|
|
"jest": "^22.4.3",
|
|
"nodemon": "^1.17.2",
|
|
"smee-client": "^1.0.2",
|
|
"standard": "^10.0.3"
|
|
},
|
|
"engines": {
|
|
"node": ">= 12.18.3"
|
|
},
|
|
"standard": {
|
|
"env": [
|
|
"jest"
|
|
]
|
|
},
|
|
"nodemonConfig": {
|
|
"exec": "npm start",
|
|
"watch": [
|
|
".env",
|
|
"."
|
|
]
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|