-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.71 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.71 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
{
"name": "african-education-framework",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"test:design": "vitest run tests/design-guidelines.test.js",
"test:a11y": "vitest run tests/accessibility-seo.test.js",
"test:seo": "vitest run tests/seo-schemas.test.js",
"test:colors": "vitest run tests/color-contrast.test.js",
"test:theme": "vitest run tests/theme-system.test.js",
"test:components": "vitest run tests/components.test.js",
"test:security": "vitest run tests/security.test.js",
"test:performance": "vitest run tests/performance.test.js",
"test:content": "vitest run tests/content-quality.test.js",
"test:infra": "vitest run tests/infrastructure.test.js",
"test:source": "vitest run tests/design-guidelines.test.js tests/color-contrast.test.js tests/theme-system.test.js tests/components.test.js",
"test:build": "vitest run tests/accessibility-seo.test.js tests/seo-schemas.test.js tests/security.test.js tests/performance.test.js tests/content-quality.test.js tests/infrastructure.test.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{astro,ts,tsx,js,jsx,css}\"",
"format:check": "prettier --check \"src/**/*.{astro,ts,tsx,js,jsx,css}\"",
"check": "npm run lint && npm run format:check && npm run test:source && npm run build && npm run test:build"
},
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/react": "^4.4.2",
"@astrojs/rss": "^4.0.15",
"@astrojs/sitemap": "^3.7.0",
"@lucide/astro": "^0.574.0",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/postcss": "^4.2.0",
"@tailwindcss/typography": "^0.5.19",
"astro": "^5.17.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.574.0",
"postcss": "^8.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^10.0.0",
"eslint-plugin-astro": "^1.6.0",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"vitest": "^4.0.18"
}
}