rsnext/examples/with-jest-flow/package.json
Sam Washburn 70aa2b5821 Merged with-jest and with-flow examples into a new with-jest-flow example. (#7224)
* Merged with-jest and with-flow examples into with-jest-flow.

* Removed semicolons linter was complaining about.
2019-05-08 14:41:34 +02:00

29 lines
667 B
JSON

{
"name": "with-jest-flow",
"version": "1.0.0",
"scripts": {
"test": "jest",
"dev": "next",
"build": "next build",
"flow": "flow",
"start": "next start"
},
"dependencies": {
"next": "latest",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@babel/core": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"babel-plugin-transform-flow-strip-types": "latest",
"enzyme": "latest",
"enzyme-adapter-react-16": "latest",
"eslint": "latest",
"flow-bin": "latest",
"jest": "latest",
"react-addons-test-utils": "latest",
"react-test-renderer": "latest"
}
}