mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
7f0591896a
* Use latest for all examples * Update yarn.lock
23 lines
461 B
JSON
23 lines
461 B
JSON
{
|
|
"name": "with-jest",
|
|
"dependencies": {
|
|
"next": "latest",
|
|
"react": "^15.4.2",
|
|
"react-dom": "^15.4.2"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"devDependencies": {
|
|
"babel-jest": "^18.0.0",
|
|
"enzyme": "^2.5.1",
|
|
"jest-cli": "^18.0.0",
|
|
"react-addons-test-utils": "^15.4.2",
|
|
"babel-preset-es2015": "^6.22.0",
|
|
"react-test-renderer": "^15.4.2"
|
|
}
|
|
}
|