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
Brice BERNARD 25005d158b [with-jest] Fix tests (#3395)
* Fix tests

* Follow linting rules
2017-12-05 10:43:30 -08:00

24 lines
480 B
JSON

{
"name": "with-jest",
"version": "1.0.0",
"dependencies": {
"next": "latest",
"react": "16.2.0",
"react-dom": "16.2.0"
},
"devDependencies": {
"enzyme": "3.2.0",
"enzyme-adapter-react-16": "1.1.0",
"jest": "21.2.1",
"raf": "3.4.0",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "16.2.0"
},
"scripts": {
"test": "NODE_ENV=test jest",
"dev": "next",
"build": "next build",
"start": "next start"
}
}