mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
27 lines
585 B
JSON
27 lines
585 B
JSON
{
|
|
"name": "@vitest/example-react",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"coverage": "vitest run --coverage",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.4.2",
|
|
"@testing-library/react": "^13.2.0",
|
|
"@testing-library/user-event": "^14.5.2",
|
|
"@types/react": "^18.2.79",
|
|
"@vitest/ui": "latest",
|
|
"jsdom": "^24.0.0",
|
|
"vite": "latest",
|
|
"vitest": "latest"
|
|
},
|
|
"stackblitz": {
|
|
"startCommand": "npm run test:ui"
|
|
}
|
|
}
|