rsnext/examples/with-jest/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

24 lines
504 B
JSON

{
"name": "with-jest",
"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",
"enzyme": "3.4.3",
"enzyme-adapter-react-16": "1.2.0",
"jest": "24.1.0",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.4.2"
},
"scripts": {
"test": "jest",
"dev": "next",
"build": "next build",
"start": "next start"
}
}