-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.28 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.28 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "erades-com",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "astro dev",
"build": "pnpm run build:flexsearch && astro build",
"start": "HOST=0.0.0.0 node ./dist/server/entry.mjs",
"build:flexsearch": "tsx scripts/generate-flexsearch-index.ts",
"preview": "astro preview",
"lhci:wizard:db": "lhci wizard --storage.storageMethod=sql --storage.sqlDialect=sqlite --storage.sqlDatabasePath=./db/lighthouse/lhci.db",
"lhci:ci:both": "dotenv -e .env -- bash -lc \"lhci collect --config=./lighthouserc.cjs && lhci collect --config=./lighthouserc.desktop.cjs --collect.additive && lhci assert --config=./lighthouserc.cjs && lhci assert --config=./lighthouserc.desktop.cjs && lhci upload --config=./lighthouserc.cjs --ignoreDuplicateBuildFailure\"",
"lhci:server:up": "docker compose -f docker-compose.lhci.yml up -d",
"lhci:server:down": "docker compose -f docker-compose.lhci.yml down",
"lhci:server:logs": "docker compose -f docker-compose.lhci.yml logs -f",
"lhci:server:ps": "docker compose -f docker-compose.lhci.yml ps",
"lhci:server:docker": "docker compose -f docker-compose.lhci.yml exec -it lhci-server /bin/bash",
"coverage": "vitest run --coverage",
"lint": "eslint src --max-warnings=0",
"lint:fix": "eslint src --max-warnings=0 --fix",
"typecheck": "tsc --noEmit -p tsconfig.json",
"translate:es-en": "dotenv -e .env -- tsx scripts/translate-posts.ts es en",
"translate:en-es": "dotenv -e .env -- tsx scripts/translate-posts.ts en es",
"test:unit": "vitest run --reporter=verbose",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:headed": "PWDEBUG=1 playwright test --headed",
"test:visual": "docker compose run --rm -e CI=true erades-com pnpm exec playwright test --config=playwright.visual.config.ts",
"test:visual:update": "pnpm run test:visual --update-snapshots",
"compose:build": "docker compose build"
},
"dependencies": {
"@astrojs/check": "0.9.4",
"@astrojs/mdx": "4.3.13",
"@astrojs/node": "9.4.3",
"@astrojs/rss": "4.0.12",
"@astrojs/sitemap": "3.5.1",
"@lucide/astro": "0.541.0",
"@tailwindcss/vite": "4.1.12",
"astro": "5.16.6",
"astro-expressive-code": "0.41.3",
"dev": "^0.1.3",
"flexsearch": "0.8.205",
"gray-matter": "4.0.3",
"openai": "5.15.0",
"run": "^1.5.0",
"sharp": "0.34.3",
"typescript": "5.9.2"
},
"devDependencies": {
"@lhci/cli": "0.15.1",
"@lhci/server": "0.15.1",
"@playwright/test": "1.57.0",
"@tailwindcss/postcss": "4.1.12",
"@tailwindcss/typography": "0.5.16",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.8.0",
"@testing-library/user-event": "14.6.1",
"@typescript-eslint/parser": "8.40.0",
"@vitest/coverage-v8": "4.0.16",
"astro-eslint-parser": "1.2.2",
"autoprefixer": "10.4.21",
"dotenv-cli": "10.0.0",
"eslint": "9.39.2",
"eslint-plugin-astro": "1.3.1",
"happy-dom": "20.0.11",
"lighthouse": "13.0.1",
"postcss": "8.5.6",
"tailwindcss": "4.1.12",
"tailwindcss-animate": "1.0.7",
"tsx": "4.20.5",
"vitest": "4.0.16"
},
"pnpm": {
"overrides": {
"mdast-util-to-hast": ">=13.2.1"
}
}
}