-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "b4os-landing-2025",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "astro dev",
"dev:netlify": "netlify dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lighthouse:mobile": "lighthouse http://localhost:4321 --output=html --output-path=./reports/lighthouse-mobile.html --view --chrome-flags=\"--headless=new --no-sandbox --disable-gpu\" --throttling-method=provided",
"lighthouse:desktop": "lighthouse http://localhost:4321 --preset=desktop --output=html --output-path=./reports/lighthouse-desktop.html --view --chrome-flags=\"--headless=new --no-sandbox --disable-gpu\" --throttling-method=provided",
"lighthouse:both": "npm run lighthouse:mobile && npm run lighthouse:desktop",
"lighthouse:ci": "npm run build && npm run preview & echo 'Esperando servidor...' && sleep 8 && npm run lighthouse:both && pkill -f 'astro preview'",
"lighthouse:quiet": "lighthouse http://localhost:4321 --preset=desktop --output=html --output-path=./reports/lighthouse-desktop.html --view --quiet",
"check:server": "curl -f http://localhost:4321 || echo 'Servidor no disponible en localhost:4321'"
},
"dependencies": {
"@formbricks/js": "^4.1.0",
"@iconify-json/cryptocurrency": "^1.2.2",
"@iconify-json/heroicons": "^1.2.2",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.45",
"aos": "^2.3.4",
"astro": "^5.12.3",
"customerio-node": "^0.1.0"
},
"devDependencies": {
"@netlify/plugin-lighthouse": "^3.0.0",
"netlify-cli": "^22.0.0",
"astro-icon": "^1.1.5",
"terser": "^5.43.1"
},
"overrides": {
"cookie": ">=0.7.0",
"tar-fs": ">=3.0.0",
"ws": ">=8.17.1",
"@netlify/plugin-lighthouse": {
"lighthouse": ">=10.0.0",
"puppeteer": ">=19.0.0",
"puppeteer-core": ">=19.0.0"
},
"lighthouse": {
"puppeteer-core": ">=19.0.0"
}
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}