27 lines
674 B
JSON
27 lines
674 B
JSON
{
|
|
"name": "@tenantatlas/website",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "astro dev --host 0.0.0.0 --port ${WEBSITE_PORT:-4321}",
|
|
"build": "astro build",
|
|
"preview": "astro preview --host 0.0.0.0",
|
|
"test": "playwright test",
|
|
"test:smoke": "playwright test"
|
|
},
|
|
"dependencies": {
|
|
"astro": "^6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.59.1",
|
|
"@tailwindcss/vite": "^4.2.2",
|
|
"@types/node": "^24.7.2",
|
|
"tailwindcss": "^4.2.2",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|