Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dauntlessnomad committed Mar 21, 2020
1 parent 4a9f21e commit 10207fe
Showing 1 changed file with 54 additions and 10 deletions.
64 changes: 54 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
"sass-loader": "7.2.0",
"save": "^2.4.0",
"semver": "6.3.0",
"styled-components": "^5.0.1",
"terser-webpack-plugin": "1.4.1",
"ts-pnp": "1.1.4",
"typescript": "^3.8.3",
Expand Down Expand Up @@ -115,7 +114,6 @@
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-react-app": "^5.0.2",
Expand All @@ -127,13 +125,59 @@
"eslint-plugin-react-hooks": "^1.6.1",
"redux-devtools-extension": "^2.13.8",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.0",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-middleware": "^3.7.1",
"webpack-dev-server": "3.10.1",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "2.0.4",
"workbox-webpack-plugin": "4.3.1"
"ts-loader": "^6.2.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"setupFiles": [
"react-app-polyfill/jsdom"
],
"setupFilesAfterEnv": [],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"testEnvironment": "jest-environment-jsdom-fourteen",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"modulePaths": [],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"babel": {
"presets": [
"react-app"
]
}
}

0 comments on commit 10207fe

Please sign in to comment.