mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
42365dd172
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "@freecodecamp/dashboard-server",
|
|
"version": "0.0.1",
|
|
"description": "The freeCodeCamp.org open-source codebase and curriculum",
|
|
"license": "BSD-3-Clause",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">= 14.0.0",
|
|
"npm": "^6.14.12"
|
|
},
|
|
"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": "develop",
|
|
"develop": "nodemon",
|
|
"lint": "standard --fix",
|
|
"start": "node index.js",
|
|
"test": "cross-env TEST_ENV=true jest --forceExit && standard",
|
|
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node"
|
|
},
|
|
"nodemonConfig": {
|
|
"exec": "npm start",
|
|
"watch": [
|
|
".env",
|
|
"."
|
|
]
|
|
},
|
|
"standard": {
|
|
"env": [
|
|
"jest"
|
|
]
|
|
},
|
|
"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"
|
|
}
|
|
}
|