freeCodeCamp/package.json

35 lines
1.3 KiB
JSON
Raw Normal View History

2018-09-05 12:30:54 +00:00
{
"name": "@freecodecamp/freecodecamp",
"version": "0.0.1",
"scripts": {
2018-10-10 20:31:52 +00:00
"prebootstrap": "npm run ensure-env",
"bootstrap": "lerna bootstrap && lerna run build --scope @freecodecamp/curriculum",
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",
2018-09-26 15:01:08 +00:00
"lint": "echo 'Warning: TODO - Define Linting.'",
"pretest-ci": "npm-run-all -s lint bootstrap",
"seed": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedChallenges",
"start-develop": "node ./tools/scripts/start-develop.js",
2018-09-27 06:58:31 +00:00
"test": "npm-run-all -p test:*",
"test-ci": "npm test",
"test:client": "cd ./client && npm test && cd ../",
"test:curriculum": "cd ./curriculum && npm test && cd ../",
2018-10-19 13:02:52 +00:00
"test:guide-directories": "node ./tools/scripts/ci/ensure-guide-page-naming.js",
2018-09-27 06:58:31 +00:00
"test:server": "echo 'Warning: TODO - Define Testing.'",
"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",
"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",
2018-09-26 15:01:08 +00:00
"npm-run-all": "^4.1.3",
"readdirp-walk": "^1.6.0",
2018-09-05 12:30:54 +00:00
"tree-kill": "^1.2.0"
}
}