template-web-astro/package.json
Renovate [BOT] 176994adff
Some checks failed
renovate/artifacts Artifact file update failure
Build, check & Test / run (push) Failing after 21s
Build Docker Image / build_docker (push) Failing after 1m15s
Lint / run (push) Failing after 21s
Delete Packages / Delete the package on a closed Pull Request (pull_request) Failing after 7s
Delete Packages / Delete the package on a deleted branch (pull_request) Has been skipped
chore(deps): update dependency @vitest/coverage-v8 to v2
2024-07-08 13:49:35 +00:00

40 lines
1002 B
JSON

{
"name": "@dzeio/template",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "node ./dist/server/entry.mjs",
"build": "astro build",
"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:e2e",
"test:unit": "vitest --coverage --run",
"test:e2e": "playwright test",
"install:test": "playwright install --with-deps",
"lint": "biome check ."
},
"dependencies": {
"@astrojs/node": "^8.0.0",
"@astrojs/tailwind": "^5",
"@dzeio/logger": "^3",
"@dzeio/object-util": "^1",
"@dzeio/url-manager": "^1",
"astro": "^4",
"lucide-astro": "^0",
"sharp": "^0",
"simple-icons-astro": "^13.0.0",
"tailwindcss": "^3"
},
"devDependencies": {
"@astrojs/check": "^0",
"@biomejs/biome": "^1.7.3",
"@playwright/test": "^1",
"@types/node": "^20",
"@vitest/coverage-v8": "^2.0.0",
"typescript": "^5",
"vitest": "^1"
}
}