mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
26 lines
528 B
JSON
26 lines
528 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",
|
|
"axios": "^0.26.1",
|
|
"fastify": "4.5.3",
|
|
"supertest": "6.2.4",
|
|
"tsx": "^3.9.0",
|
|
"vite": "latest",
|
|
"vitest": "latest"
|
|
},
|
|
"stackblitz": {
|
|
"startCommand": "npm run test:ui"
|
|
}
|
|
}
|