vitest/examples/nextjs/package.json
irvile 9dd26e269e
docs: update nextjs example (#1174)
* fix(dev): fix next/image hostname error in nextjs

* chore: update react 18 in nextjs example

* chore: pnpm-lock.yaml
2022-04-21 12:48:29 +08:00

26 lines
527 B
JSON

{
"name": "@vitest/nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "vitest"
},
"dependencies": {
"next": "12.1.5",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"@testing-library/react": "^13.1.1",
"@types/node": "17.0.23",
"@types/react": "17.0.44",
"@vitejs/plugin-react": "1.3.0",
"jsdom": "^19.0.0",
"typescript": "4.6.3",
"vitest": "latest"
}
}