vitest/examples/fastify/package.json
renovate[bot] 9e9d1fe575
chore(deps): update dependency fastify to v5 (#8268)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-14 10:46:04 +02:00

25 lines
507 B
JSON

{
"name": "@vitest/example-fastify",
"type": "module",
"private": true,
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development tsx watch src",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"devDependencies": {
"@vitest/ui": "latest",
"fastify": "^5.4.0",
"supertest": "^6.3.4",
"tsx": "^4.20.3",
"vite": "latest",
"vitest": "latest"
},
"stackblitz": {
"startCommand": "npm run test:ui"
}
}