freeCodeCamp/client/package.json

153 lines
5.2 KiB
JSON
Raw Normal View History

{
"name": "@freecodecamp/client",
"version": "0.0.1",
"description": "The freeCodeCamp.org open-source codebase and curriculum",
"license": "BSD-3-Clause",
"private": true,
"engines": {
"node": ">=16",
"npm": ">=8"
},
"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": {
"prebuild": "npm --prefix ../ run create:config && npm run build:workers -- --env production",
2021-12-08 11:14:33 +00:00
"build": "cross-env NODE_OPTIONS=\"--max-old-space-size=7168\" gatsby build --prefix-paths",
"build:workers": "cross-env NODE_OPTIONS=\"--max-old-space-size=7168\" webpack --config ./webpack-workers.js",
"clean": "gatsby clean",
"predevelop": "npm --prefix ../ run create:config && npm run build:workers -- --env development",
"develop": "cross-env NODE_OPTIONS=\"--max-old-space-size=5000\" gatsby develop --inspect=9230",
"lint": "node ./i18n/schema-validation.js",
"serve": "gatsby serve -p 8000",
feat: add 'back/front end' in curriculum (#42596) * chore: rename APIs and Microservices to include "Backend" (#42515) * fix typo * fix typo * undo change * Corrected grammar mistake Corrected a grammar mistake by removing a comma. * change APIs and Microservices cert title * update title * Change APIs and Microservices certi title * Update translations.json * update title * feat(curriculum): rename apis and microservices cert * rename folder structure * rename certificate * rename learn Markdown * apis-and-microservices -> back-end-development-and-apis * update backend meta * update i18n langs and cypress test Co-authored-by: Shaun Hamilton <shauhami020@gmail.com> * fix: add development to front-end libraries (#42512) * fix: added-the-word-Development-to-front-end-libraries * fix/added-the-word-Development-to-front-end-libraries * fix/added-word-development-to-front-end-libraries-in-other-related-files * fix/added-the-word-Development-to-front-end-and-all-related-files * fix/removed-typos-from-last-commit-in-index.md * fix/reverted-changes-that-i-made-to-dependecies * fix/removed xvfg * fix/reverted changes that i made to package.json * remove unwanted changes * front-end-development-libraries changes * rename backend certSlug and README * update i18n folder names and keys * test: add legacy path redirect tests This uses serve.json from the client-config repo, since we currently use that in production * fix: create public dir before moving serve.json * fix: add missing script * refactor: collect redirect tests * test: convert to cy.location for stricter tests * rename certificate folder to 00-certificates * change crowdin config to recognise new certificates location * allow translations to be used Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com> * add forwards slashes to path redirects * fix cypress path tests again * plese cypress * fix: test different challenge Okay so I literally have no idea why this one particular challenge fails in Cypress Firefox ONLY. Tom and I paired and spun a full build instance and confirmed in Firefox the page loads and redirects as expected. Changing to another bootstrap challenge passes Cypress firefox locally. Absolutely boggled by this. AAAAAAAAAAAAAAA * fix: separate the test Okay apparently the test does not work unless we separate it into a different `it` statement. >:( >:( >:( >:( Co-authored-by: Sujal Gupta <55016909+heysujal@users.noreply.github.com> Co-authored-by: Noor Fakhry <65724923+NoorFakhry@users.noreply.github.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> Co-authored-by: Nicholas Carrigan (he/him) <nhcarrigan@gmail.com>
2021-08-14 02:57:13 +00:00
"serve-ci": "serve -l 8000 -c ../serve.json public",
"prestand-alone": "npm run prebuild",
"stand-alone": "gatsby develop",
"validate-keys": "ts-node --project ../tsconfig.json ../tools/scripts/lint/validate-keys"
},
"dependencies": {
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/plugin-proposal-function-bind": "7.16.7",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
2022-03-19 00:23:57 +00:00
"@babel/standalone": "7.17.8",
"@fortawesome/fontawesome-svg-core": "6.1.1",
"@fortawesome/free-brands-svg-icons": "6.1.1",
"@fortawesome/free-solid-svg-icons": "6.1.1",
"@fortawesome/react-fontawesome": "0.1.18",
"@freecodecamp/loop-protect": "2.2.1",
"@freecodecamp/react-bootstrap": "0.32.3",
"@freecodecamp/react-calendar-heatmap": "1.0.0",
"@freecodecamp/strip-comments": "3.0.1",
"@loadable/component": "5.15.2",
"@reach/router": "1.3.4",
"@stripe/react-stripe-js": "1.7.0",
"@stripe/stripe-js": "1.25.0",
2021-08-08 20:29:26 +00:00
"@types/react-scrollable-anchor": "0.6.1",
"algoliasearch": "4.13.0",
"assert": "2.0.0",
"babel-plugin-preval": "5.1.0",
"babel-plugin-prismjs": "2.1.0",
"bezier-easing": "2.1.0",
"browser-cookies": "1.2.0",
"buffer": "6.0.3",
"chai": "4.3.6",
"crypto-browserify": "3.12.0",
"date-fns": "2.27.0",
"dedent": "0.7.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"final-form": "4.20.6",
"gatsby": "3.14.6",
2021-10-15 20:27:31 +00:00
"gatsby-cli": "3.14.2",
"gatsby-plugin-advanced-sitemap": "2.1.0",
2021-09-17 20:45:26 +00:00
"gatsby-plugin-create-client-paths": "3.14.0",
"gatsby-plugin-manifest": "3.14.0",
"gatsby-plugin-postcss": "4.14.0",
"gatsby-plugin-react-helmet": "4.14.0",
"gatsby-plugin-remove-serviceworker": "1.0.0",
2021-09-17 20:45:26 +00:00
"gatsby-remark-prismjs": "5.11.0",
"gatsby-source-filesystem": "3.14.0",
"gatsby-transformer-remark": "4.11.0",
"i18next": "20.6.1",
"jquery": "3.6.0",
"lodash": "4.17.21",
"lodash-es": "4.17.21",
"monaco-editor": "0.28.1",
"nanoid": "3.3.1",
"normalize-url": "4.5.1",
"path-browserify": "1.0.1",
"postcss": "8.4.12",
"prismjs": "1.27.0",
"process": "0.11.10",
"prop-types": "15.8.1",
"psl": "1.8.0",
"query-string": "7.0.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-final-form": "6.5.8",
"react-ga": "3.3.0",
"react-helmet": "6.1.0",
"react-hotkeys": "2.0.0",
"react-i18next": "11.16.2",
"react-instantsearch-dom": "6.23.0",
"react-lazy-load": "3.1.13",
"react-monaco-editor": "0.40.0",
"react-redux": "5.1.2",
"react-reflex": "4.0.6",
"react-responsive": "6.1.2",
"react-scrollable-anchor": "0.6.1",
"react-spinkit": "3.0.0",
"react-tooltip": "4.2.21",
"react-transition-group": "4.4.2",
"react-youtube": "7.14.0",
"redux": "4.1.2",
"redux-actions": "2.6.5",
"redux-devtools-extension": "2.13.9",
"redux-observable": "1.2.0",
"redux-saga": "1.1.3",
"reselect": "4.1.5",
"rxjs": "6.6.7",
"sanitize-html": "2.7.0",
"sass.js": "0.11.1",
2021-11-22 13:48:34 +00:00
"sha-1": "1.0.0",
"store": "2.0.12",
"stream-browserify": "3.0.0",
"tone": "14.7.77",
"typescript": "4.6.3",
"util": "0.12.4",
"uuid": "8.3.2",
"validator": "13.7.0"
},
"devDependencies": {
"@babel/types": "7.17.0",
"@codesee/babel-plugin-instrument": "0.216.0",
"@codesee/tracker": "0.216.0",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "12.1.4",
"autoprefixer": "10.4.4",
"babel-plugin-transform-imports": "2.0.0",
"chokidar": "3.5.3",
"copy-webpack-plugin": "9.1.0",
"core-js": "2.6.12",
"gatsby-plugin-webpack-bundle-analyser-v2": "1.1.27",
"jest-json-schema-extended": "1.0.1",
2021-10-26 21:53:09 +00:00
"monaco-editor-webpack-plugin": "4.2.0",
"react-test-renderer": "16.14.0",
"redux-mock-store": "1.5.4",
"redux-saga-test-plan": "4.0.4",
"serve": "13.0.2",
"ts-node": "10.7.0",
"webpack": "5.70.0",
"webpack-cli": "4.9.2"
}
}