vitest/examples/fastify/package.json
2022-09-08 11:32:52 +03:00

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"
}
}