-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.3 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.3 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
{
"name": "boring-math",
"type": "module",
"version": "1.0.0",
"description": "Free online calculators for everyday math problems",
"homepage": "https://boring-math.com",
"scripts": {
"dev": "astro dev",
"generate-og": "node scripts/generate-og-images.mjs",
"validate:shared-data": "node scripts/validate-shared-data.mjs",
"prebuild": "npm run generate-og && npm run validate:shared-data",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,astro,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,astro,css}\"",
"seo:cluster": "node scripts/seo/keyword-cluster-pipeline.mjs",
"seo:gsc-refresh": "node scripts/seo/gsc-refresh-workflow.mjs",
"seo:internal-links": "node scripts/seo/internal-link-map.mjs",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"qa": "npm run format:check && npm run lint && npm run test && npm run build",
"prepare": "husky"
},
"dependencies": {
"@astrojs/preact": "^4.1.3",
"@fontsource/instrument-serif": "^5.2.8",
"@fontsource/space-grotesk": "^5.2.10",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.16.6",
"preact": "^10.28.2"
},
"devDependencies": {
"@astrojs/sitemap": "^3.6.0",
"@axe-core/cli": "^4.11.1",
"@axe-core/playwright": "^4.11.1",
"@fontsource/inter": "^5.2.8",
"@playwright/test": "^1.59.1",
"@resvg/resvg-js": "^2.6.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/preact": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"eslint-plugin-preact": "^0.1.0",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"prettier-plugin-astro": "^0.14.1",
"satori": "^0.18.3",
"tailwindcss": "^4.1.18",
"vitest": "^4.0.17"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.astro": [
"prettier --write"
],
"src/**/*.css": [
"prettier --write"
]
}
}