freeCodeCamp/package.json

44 lines
1.6 KiB
JSON
Raw Normal View History

2018-09-05 12:30:54 +00:00
{
"name": "@freecodecamp/freecodecamp",
"version": "0.0.1",
"scripts": {
"postinstall": "npm run bootstrap",
2018-10-10 20:31:52 +00:00
"prebootstrap": "npm run ensure-env",
2018-11-16 18:22:52 +00:00
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
2018-09-27 06:58:31 +00:00
"develop": "npm-run-all -s ensure-env start-develop",
"ensure-env": "cross-env DEBUG=fcc:* node ./tools/scripts/ensure-env.js",
"lint": "echo 'Warning: TODO - Define Linting with fixing.'",
2018-11-09 15:19:03 +00:00
"seed": "npm-run-all -p seed:*",
"seed:challenges": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedChallenges",
"seed:news": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedNewsArticles",
"start-develop": "node ./tools/scripts/start-develop.js",
"pretest": "npm-run-all -s test:lint",
2018-09-27 06:58:31 +00:00
"test": "npm-run-all -p test:*",
"test:lint": "echo 'Warning: TODO - Define Linting tests.'",
"test:client": "cd ./client && npm test && cd ../",
"test:curriculum": "cd ./curriculum && npm test && cd ../",
"test:challenge-formatting": "node ./tools/scripts/ci/ensure-challenge-formatting.js",
"test:guide-formatting": "node ./tools/scripts/ci/ensure-guide-formatting.js",
"test:server": "cd ./api-server && npm test && cd ../",
"test:tools": "jest ./tools"
},
2018-09-05 12:30:54 +00:00
"devDependencies": {
"cross-env": "^5.2.0",
"debug": "^4.0.1",
2018-10-07 07:51:58 +00:00
"dotenv": "^6.0.0",
"eslint-config-freecodecamp": "^1.1.1",
2018-11-09 15:19:03 +00:00
"faker": "^4.1.0",
"gray-matter": "^4.0.1",
"jest": "^23.6.0",
2018-09-26 14:40:35 +00:00
"lerna": "^3.4.0",
"lodash": "^4.17.11",
"npm-run-all": "^4.1.5",
"ora": "^3.0.0",
"readdirp-walk": "^1.6.0",
2018-11-09 15:19:03 +00:00
"shortid": "^2.2.14",
"slugg": "^1.2.1",
2018-09-05 12:30:54 +00:00
"tree-kill": "^1.2.0"
}
}