vitest/examples/workspace/package.json

33 lines
726 B
JSON

{
"name": "@vitest/example-workspace",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"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",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/ui": "latest",
"fastify": "^4.26.2",
"jsdom": "^24.0.0",
"react": "^18.2.0",
"supertest": "^6.3.4",
"tsx": "^4.7.2",
"vite": "latest",
"vitest": "latest"
},
"workspaces": [
"packages/*"
],
"stackblitz": {
"startCommand": "npm run test:ui"
}
}