rsnext/examples/with-jest-react-testing-library/package.json
Luc 806bfdfa99 Update with-jest, with-jest-react-testing-library examples (#6464)
The latest version of babel-jest doesn't require `babel-core` with the bridge version anymore (updated in this PR : https://github.com/facebook/jest/pull/7016).

So I'm updating with-jest and with-jest-react-testing-library examples accordingly.
2019-02-27 12:32:12 +01:00

21 lines
424 B
JSON

{
"name": "with-jest-react-testing-library",
"version": "1.0.0",
"dependencies": {
"next": "latest",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"devDependencies": {
"@babel/core": "7.3.4",
"babel-jest": "24.1.0",
"jest": "24.1.0",
"react-testing-library": "^5.4.2"
},
"scripts": {
"test": "jest",
"dev": "next",
"build": "next build",
"start": "next start"
}
}