template-web-astro/package.json
Florian Bouillon 71fd87a716 fix: check failed
Signed-off-by: Florian BOUILLON <f.bouillon@aptatio.com>
2023-07-04 16:14:27 +02:00

42 lines
1.0 KiB
JSON

{
"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",
"astro": "astro",
"check": "npm run check:astro && npm run check:typescript",
"check:astro": "astro check",
"check:typescript": "tsc --noEmit",
"test": "npm run test:unit && npm run test:integ",
"test:unit": "vitest --coverage --run",
"test:integ": "cypress run"
},
"dependencies": {
"@astrojs/node": "^5",
"@astrojs/tailwind": "^3",
"@dzeio/logger": "^3",
"@dzeio/object-util": "^1",
"@dzeio/url-manager": "^1",
"astro": "^2",
"bcryptjs": "^2",
"jsonwebtoken": "^9",
"lucide-astro": "^0.256.1",
"mathjs": "^11",
"mongoose": "^7",
"tailwindcss": "^3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/bcryptjs": "^2",
"@types/jsonwebtoken": "^9",
"@types/node": "^20",
"@vitest/coverage-v8": "^0.32.2",
"cypress": "^12",
"vitest": "^0.32.2"
}
}