mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
33 lines
724 B
JSON
33 lines
724 B
JSON
{
|
|
"name": "@vitest/example-projects",
|
|
"type": "module",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:run": "vitest run"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^6.6.4",
|
|
"@testing-library/react": "^13.4.0",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/react": "^19.1.9",
|
|
"@vitejs/plugin-react": "^4.7.0",
|
|
"@vitest/ui": "latest",
|
|
"fastify": "^5.4.0",
|
|
"jsdom": "^26.1.0",
|
|
"react": "^19.1.1",
|
|
"supertest": "^6.3.4",
|
|
"tsx": "^4.20.3",
|
|
"vite": "latest",
|
|
"vitest": "latest"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"stackblitz": {
|
|
"startCommand": "npm run test:ui"
|
|
}
|
|
}
|