7787bed2e9
Replace nodemailer SMTP with HTTP fetch to mail-api container (http://mail-api:3200/api/mail/send) which already holds the Brevo SMTP creds. Single source of truth for mail credentials, no duplication across electron-rare-site and mail-api. Drop nodemailer + @types/nodemailer from deps. Restore npm ci in Dockerfile since the lock no longer drifts. Override defaults via env: MAIL_API_URL, MAIL_FROM, MAIL_TO. mail-api intra-Docker network reachable because both services are on the traefik network.
63 lines
2.0 KiB
JSON
63 lines
2.0 KiB
JSON
{
|
|
"name": "electron-rare-studio",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"build:external": "node scripts/build-astro-external.mjs",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"typecheck": "astro check",
|
|
"storybook": "storybook dev -p 6006",
|
|
"storybook:build": "storybook build",
|
|
"lab:dev": "npm --prefix apps/lab-interactif run dev",
|
|
"lab:build": "npm --prefix apps/lab-interactif run build",
|
|
"lab:preview": "npm --prefix apps/lab-interactif run preview",
|
|
"tracking:check": "node scripts/validate-tracking.mjs",
|
|
"image:budget": "node scripts/check-image-budget.mjs",
|
|
"preflight:pages": "npm run lab:build && npm run tracking:check && npm run image:budget && npm run storybook:build",
|
|
"deploy:ftp": "bash scripts/deploy-ovh-ftp.sh dist",
|
|
"deploy:web:ftp": "npm run build:external && npm run deploy:ftp",
|
|
"deploy:web:sftp": "npm run build:external && bash scripts/deploy-ovh-sftp.sh dist"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/node": "^9.4.5",
|
|
"@astrojs/react": "^4.4.1",
|
|
"@radix-ui/react-slot": "^1.2.3",
|
|
"@react-three/drei": "^10.7.7",
|
|
"@react-three/fiber": "^9.5.0",
|
|
"@react-three/postprocessing": "^3.0.4",
|
|
"astro": "^5.13.8",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"motion": "^12.23.24",
|
|
"postprocessing": "^6.39.0",
|
|
"react": "^19.1.1",
|
|
"react-dom": "^19.1.1",
|
|
"tailwind-merge": "^3.3.1",
|
|
"three": "^0.183.2"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/check": "^0.9.6",
|
|
"@storybook/addon-a11y": "^9.1.5",
|
|
"@storybook/addon-docs": "^9.1.5",
|
|
"@storybook/addon-onboarding": "^9.1.5",
|
|
"@storybook/addon-vitest": "^9.1.5",
|
|
"@storybook/react-vite": "^9.1.5",
|
|
"@tailwindcss/vite": "^4.1.13",
|
|
"storybook": "^9.1.5",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"overrides": {
|
|
"@astrojs/language-server": {
|
|
"volar-service-yaml": "0.0.70"
|
|
},
|
|
"volar-service-yaml": {
|
|
"yaml-language-server": "1.21.0"
|
|
},
|
|
"lodash": "4.17.23"
|
|
}
|
|
}
|