(fixture) add faker and vitest to generate random dog names

This commit is contained in:
Julien Calixte
2023-07-22 11:10:57 +02:00
parent 457d2e7d5b
commit 2c73fa90e3
2 changed files with 352 additions and 3 deletions

View File

@@ -6,19 +6,22 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "echo \"Error: no test specified\" && exit 1"
"test": "vitest",
"coverage": "vitest run --coverage"
},
"keywords": [],
"author": "Julien Calixte <julienc@bam.tech>",
"license": "ISC",
"dependencies": {
"vite": "^4.4.1",
"vue": "^3.3.4"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/node": "^20.4.2",
"@vitejs/plugin-vue": "^4.2.3",
"sass": "^1.64.0",
"typescript": "^5.1.6"
"typescript": "^5.1.6",
"vitest": "^0.33.0",
"vite": "^4.4.1"
}
}