{ "name": "@freecodecamp/freecodecamp", "private": true, "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'", "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", "cypress": "cypress", "cypress:install": "cypress install && echo 'for use with ./cypress-install.js'", "cypress:dev:run": "npm run cypress -- run", "cypress:dev:watch": "npm run cypress -- open", "cypress:prd:run": "npm run cypress -- run", "cypress:prd:watch": "npm run cypress -- open", "develop": "npm-run-all ensure-env -p develop:*", "develop:client": "cd ./client && npm run develop", "develop:server": "cd ./api-server && npm run develop", "docs:serve": "docsify serve ./docs -o --port 3200", "ensure-env": "cross-env DEBUG=fcc:* node ./tools/scripts/build/ensure-env.js", "e2e:dev:watch": "start-test develop ':3000/status/ping|8000' cypress:dev:watch", "e2e:dev:run": "start-test develop ':3000/status/ping|8000' cypress:dev:run", "e2e:prd:watch": "npm run build && start-test ':3000/status/ping|8000' cypress:dev:watch", "e2e:prd:run": "npm run build && start-test ':3000/status/ping|8000' cypress:dev:run", "format": "npm-run-all -p format:*", "format:js": "npm run lint:js -- --fix", "format:css": "npm run prettier -- --write", "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 .", "lint:css": "npm run prettier -- --check", "prettier": "prettier \"**/*.css\"", "postinstall": "npm run bootstrap", "seed": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser", "seed:certified-user": "cross-env DEBUG=fcc:* node ./tools/scripts/seed/seedAuthUser certUser", "serve:client": "cd ./client && npm run serve", "start": "npm-run-all ensure-env -p develop:server serve:client", "test": "npm-run-all -p test:*", "test:client": "cd ./client && npm test", "test:curriculum": "cd ./curriculum && npm test", "test-curriculum-full-output": "cd ./curriculum && npm run test:full-output", "test:curriculum-js": "jest --rootDir ./curriculum", "test:server": "cd ./api-server && npm test", "test:tools": "jest ./tools", "test:utils": "jest --rootDir ./utils" }, "devDependencies": { "@testing-library/cypress": "^7.0.3", "babel-eslint": "^10.1.0", "cross-env": "^7.0.3", "cypress": "^6.1.0", "debug": "^4.3.1", "docsify-cli": "^4.4.2", "dotenv": "^6.2.0", "eslint": "^5.16.0", "eslint-config-prettier": "^6.12.0", "eslint-plugin-babel": "^5.3.1", "eslint-plugin-import": "^2.22.1", "eslint-plugin-jsx-a11y": "^6.4.1", "eslint-plugin-prefer-object-spread": "^1.2.1", "eslint-plugin-prettier": "^3.3.0", "eslint-plugin-react": "^7.21.5", "eslint-plugin-react-hooks": "^2.0.1", "execa": "^4.0.3", "gray-matter": "^4.0.2", "husky": "^3.1.0", "jest": "^24.9.0", "js-yaml": "^3.14.1", "lerna": "^3.22.1", "lint-staged": "^8.2.1", "lodash": "^4.17.20", "markdownlint": "^0.21.0", "npm-run-all": "^4.1.5", "ora": "^3.4.0", "prettier": "^1.18.2", "prismjs": "^1.22.0", "readdirp-walk": "^1.7.0", "shx": "^0.3.3", "sinon": "^7.4.1", "sinon-express-mock": "^2.2.1", "start-server-and-test": "^1.11.6" }, "lint-staged": { "linters": { "*.js": [ "eslint --fix", "git add" ], "./curriculum/challenges/**/*.md": "node ./tools/scripts/lint/index.js", "*.css": [ "prettier --write", "git add" ] } }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "dependencies": {} }