chore: project scaffold, specs, and working record
Build and deploy / build-and-deploy (push) Failing after 5s

This commit is contained in:
Pouya Lajevardi
2026-08-26 08:51:16 -04:00
commit 19f7226661
26 changed files with 3206 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
{
"name": "adr-smlcompany-ca",
"version": "0.1.0",
"private": true,
"description": "The dispute resolution practice of Pouya Lajevardi — Toronto",
"type": "module",
"engines": { "node": ">=22" },
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"lighthouse": "lhci autorun"
},
"dependencies": {
"astro": "^5.0.0",
"@astrojs/mdx": "^4.0.0",
"@astrojs/sitemap": "^3.2.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.0",
"typescript": "^5.7.0",
"prettier": "^3.4.0",
"prettier-plugin-astro": "^0.14.0",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.3.0",
"@lhci/cli": "^0.14.0"
}
}