avior.me/package.json
2023-09-21 14:32:35 +00:00

35 lines
838 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"
},
"dependencies": {
"@astrojs/node": "^6",
"@astrojs/tailwind": "^5",
"@dzeio/logger": "^3",
"@dzeio/object-util": "^1",
"@dzeio/url-manager": "^1",
"astro": "^3",
"lucide-astro": "^0",
"tailwindcss": "^3"
},
"devDependencies": {
"@playwright/test": "^1",
"@types/node": "^20",
"@vitest/coverage-v8": "^0",
"vitest": "^0"
}
}