web app, icons

This commit is contained in:
EthanShoeDev
2025-09-10 05:16:15 -04:00
parent 129b1c9759
commit a7e36870d6
36 changed files with 3341 additions and 32 deletions

33
apps/web/package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "@fressh/web",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"fmt": "cross-env SORT_IMPORTS=true prettier --write .",
"fmt:check": "cross-env SORT_IMPORTS=true prettier --check .",
"typecheck": "tsc",
"lint:fix": "eslint --fix --max-warnings 0 --report-unused-disable-directives .",
"eslint:check": "eslint --max-warnings 0 --report-unused-disable-directives ."
},
"dependencies": {
"@tailwindcss/vite": "^4.1.13",
"astro": "^5.13.7",
"tailwindcss": "^4.1.13",
"@fressh/assets": "workspace:*"
},
"devDependencies": {
"@epic-web/config": "^1.21.3",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "^9.35.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"prettier": "^3.6.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "^0.6.14"
}
}