1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-jest/package.json
Luc 91b21f9514 Update with-jest example .babelrc config (#5414)
* simplify babelrc

* simplify "test" script

* update dependencies
2018-10-09 12:45:51 +02:00

26 lines
542 B
JSON

{
"name": "with-jest",
"version": "1.0.0",
"dependencies": {
"next": "latest",
"react": "^16.5.0",
"react-dom": "^16.5.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^23.6.0",
"enzyme": "3.4.3",
"enzyme-adapter-react-16": "1.2.0",
"jest": "^23.6.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"
}
}