feat: Add support for cypress and vitest

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2023-06-21 20:01:17 +02:00
parent dc80dec6a8
commit 8442c7b4e3
10 changed files with 2478 additions and 9 deletions

View File

@ -1,12 +1,15 @@
{
"name": "paas",
"name": "@fi3d/slicer-as-a-service",
"version": "0.0.1",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "node ./dist/server/entry.mjs",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
"astro": "astro",
"test": "vitest"
},
"dependencies": {
"@astrojs/node": "^5.2.0",
@ -19,6 +22,8 @@
"tailwindcss": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.3.1"
"@types/node": "^20.3.1",
"cypress": "^12.15.0",
"vitest": "^0.32.2"
}
}