rsnext/examples/with-vitest/package.json
Lee Robinson 7a256e657b
Update Jest and Vitest example for App Router. (#54989)
Building off https://github.com/vercel/next.js/pull/54891, updates the `with-jest` and `with-vitest` examples with updated packages and App Router tests.
2023-09-05 13:31:47 +00:00

27 lines
642 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest"
},
"dependencies": {
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"server-only": "^0.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "6.1.2",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/node": "20.5.9",
"@types/react": "18.2.21",
"@types/testing-library__jest-dom": "6.0.0",
"@vitejs/plugin-react": "4.0.4",
"jsdom": "^22.1.0",
"typescript": "5.2.2",
"vitest": "0.34.3"
}
}