freeCodeCamp/package.json

122 lines
5.2 KiB
JSON
Raw Normal View History

2018-09-05 12:30:54 +00:00
{
"name": "@freecodecamp/freecodecamp",
"private": true,
2018-09-05 12:30:54 +00:00
"version": "0.0.1",
"scripts": {
"audit": "npm audit & lerna exec --no-bail 'echo $LERNA_PACKAGE_NAME & npm audit'",
"audit:fix": "npm audit fix & lerna exec 'echo $LERNA_PACKAGE_NAME & npm audit fix'",
2019-08-15 09:11:29 +00:00
"build": "npm-run-all ensure-env -p build:*",
"build:client": "cd ./client && npm run build",
"build:server": "cd ./api-server && npm run build",
"bootstrap": "lerna bootstrap --ci",
"clean": "npm-run-all clean:client clean:server clean:packages",
"clean-and-develop": "npm run clean && npm ci && npm run develop",
"clean:root-deps": "shx rm -rf node_modules",
"clean:packages": "lerna clean -y",
"clean:server": "shx rm -rf ./api-server/lib",
"clean:client": "cd ./client && npm run clean",
"clean:gatsby-site": "npm run clean:client",
"precypress": "node cypress-install.js",
2019-10-05 22:38:38 +00:00
"cypress": "cypress",
"cypress:install": "cypress install && echo 'for use with cypress-install.js'",
2019-10-05 22:38:38 +00:00
"cypress:run": "npm run cypress -- run --config baseUrl=http://localhost:8000",
2019-02-08 15:36:40 +00:00
"develop": "npm-run-all ensure-env -p develop:*",
"develop:client": "cd ./client && npm run develop",
"develop:server": "cd ./api-server && npm run develop",
"docker:run-once": "npm run docker:init && npm run docker:install && npm run docker:seed",
"docker:clean": "docker-compose run -u root --rm freecodecamp bash -c \"rm -rf **/node_modules/* **/node_modules/..?* **/node_modules/.[!.]* node_modules/* node_modules/..?* node_modules/.[!.]*\"",
"docker:develop": "docker-compose up client api-server",
"docker:init": "docker-compose run -u root --rm freecodecamp bash change_volumes_owner.sh && docker-compose run -u root --rm client bash -c \"cd .. && bash change_volumes_owner.sh\" && docker-compose run -u root --rm api-server bash -c \"cd .. && bash change_volumes_owner.sh\"",
"docker:install": "docker-compose run --rm freecodecamp npm ci",
"docker:seed": "docker-compose run --rm freecodecamp npm run seed",
"docker:test": "docker-compose -f docker-compose.tests.yml run --rm tests bash",
"docker:test:init": "docker-compose -f docker-compose.tests.yml run -u root --rm tests bash change_volumes_owner.sh",
"docs:serve": "docsify serve ./docs",
"ensure-env": "cross-env DEBUG=fcc:* node ./tools/scripts/build/ensure-env.js",
2019-10-05 22:38:38 +00:00
"e2e": "./cypress/run-e2e.sh",
2019-06-24 08:45:38 +00:00
"format": "npm-run-all -p format:*",
"format:js": "npm run lint:js -- --fix",
"format:css": "npm run prettier -- --write",
2019-02-18 23:08:59 +00:00
"hooks:install": "node node_modules/husky/husky.js install",
"hooks:uninstall": "node node_modules/husky/husky.js uninstall",
"lint": "npm-run-all -p lint:*",
"lint:challenges": "cd ./curriculum && npm run lint",
"lint:js": "eslint .",
2019-06-24 08:45:38 +00:00
"lint:css": "npm run prettier -- --check",
"prettier": "prettier \"**/*.css\"",
2019-02-18 23:08:59 +00:00
"postinstall": "npm run bootstrap",
2018-11-09 15:19:03 +00:00
"seed": "npm-run-all -p seed:*",
"seed:auth-user": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser",
2019-02-08 15:36:40 +00:00
"seed:challenges": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedChallenges",
"serve:client": "cd ./client && npm run serve",
"start": "npm-run-all ensure-env -p develop:server serve:client",
2018-09-27 06:58:31 +00:00
"test": "npm-run-all -p test:*",
"test:client": "cd ./client && npm test && cd ../",
2019-10-05 22:38:38 +00:00
"test:client:e2e": "cd ./client && npm run e2e:ci && cd ../",
"test:curriculum": "cd ./curriculum && npm test && cd ../",
"test:guide-formatting": "node ./tools/scripts/ci/ensure-guide-formatting.js",
2019-02-08 15:36:40 +00:00
"test:lint": "echo 'Warning: TODO - Define Linting tests.'",
"test:search-indexing": "jest ./search-indexing",
"test:server": "cd ./api-server && npm test && cd ../",
2019-09-26 14:27:26 +00:00
"test:tools": "jest ./tools",
"test:utils": "jest --rootDir ./utils"
},
2018-09-05 12:30:54 +00:00
"devDependencies": {
2019-02-18 18:23:30 +00:00
"@freecodecamp/eslint-config": "^2.0.2",
"babel-eslint": "^10.1.0",
"cross-env": "^5.2.0",
2019-10-05 22:38:38 +00:00
"cypress": "^3.8.3",
"debug": "^4.1.1",
"docsify-cli": "^4.4.0",
2019-08-13 19:59:11 +00:00
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
2019-08-13 19:59:11 +00:00
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.0.1",
"execa": "^4.0.1",
2018-11-09 15:19:03 +00:00
"faker": "^4.1.0",
"gray-matter": "^4.0.2",
"gulp": "^4.0.2",
"husky": "^4.2.5",
2020-03-16 10:41:02 +00:00
"jest": "^24.9.0",
"js-yaml": "^3.13.0",
"lerna": "^3.20.2",
2019-08-13 19:59:11 +00:00
"lint-staged": "^8.2.1",
"lodash": "^4.17.15",
"markdownlint": "^0.15.0",
"npm-run-all": "^4.1.5",
"ora": "^3.4.0",
"prettier": "^1.18.2",
"prismjs": "^1.20.0",
2019-02-27 15:32:17 +00:00
"readdirp-walk": "^1.7.0",
"shortid": "^2.2.15",
"shx": "^0.3.2",
2019-08-13 19:59:11 +00:00
"sinon": "^7.4.1",
"sinon-express-mock": "^2.2.1",
"slugg": "^1.2.1"
2019-02-18 23:08:59 +00:00
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"git add"
],
"./curriculum/challenges/**/*.md": "node ./tools/scripts/lint/index.js",
2019-06-24 08:45:38 +00:00
"*.css": [
"prettier --write",
"git add"
]
2019-06-24 08:45:38 +00:00
}
2019-02-18 23:08:59 +00:00
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
2018-09-05 12:30:54 +00:00
}
}