Updates after latest merge from upstream branch

This commit is contained in:
gianantoniopini
2020-12-21 11:53:24 +01:00
parent 9d713d7449
commit 7450b1c683
3 changed files with 4795 additions and 2 deletions

View File

@ -12,6 +12,6 @@ module.exports = {
__PATH_PREFIX__: ``, __PATH_PREFIX__: ``,
}, },
testURL: `http://localhost`, testURL: `http://localhost`,
setupFilesAfterEnv: [`<rootDir>/jest.setup.js`],
setupFiles: [`<rootDir>/loadershim.js`], setupFiles: [`<rootDir>/loadershim.js`],
setupFilesAfterEnv: [`<rootDir>/jest.setup.js`],
}; };

4786
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -7,13 +7,14 @@
"scripts": { "scripts": {
"lint": "eslint .", "lint": "eslint .",
"lint:fix": "eslint --fix .", "lint:fix": "eslint --fix .",
"prebuild": "npm run test",
"build": "gatsby build", "build": "gatsby build",
"develop": "gatsby develop", "develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"", "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop", "start": "npm run develop",
"serve": "gatsby serve", "serve": "gatsby serve",
"clean": "gatsby clean", "clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1" "test": "jest"
}, },
"dependencies": { "dependencies": {
"@material-ui/core": "^4.11.2", "@material-ui/core": "^4.11.2",
@ -61,6 +62,10 @@
"yup": "^0.32.8" "yup": "^0.32.8"
}, },
"devDependencies": { "devDependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.9.0",
"eslint": "^7.16.0", "eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1", "eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0", "eslint-config-prettier": "^7.1.0",
@ -69,6 +74,8 @@
"eslint-plugin-prettier": "^3.3.0", "eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5", "eslint-plugin-react": "^7.21.5",
"gatsby-plugin-eslint": "^2.0.8", "gatsby-plugin-eslint": "^2.0.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"prettier": "2.2.1", "prettier": "2.2.1",
"stylelint": "^13.8.0", "stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0", "stylelint-config-standard": "^20.0.0",