forked from OpenClassrooms-Student-Center/GameOn-website-FR
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "pixelclash-landing-page",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"lint": "eslint . --ext .js,.astro",
"format": "prettier --write .",
"lighthouse": "npm run build && lhci autorun",
"test:lighthouse": "npm run build && lhci autorun",
"test:a11y": "playwright test tests/accessibility.test.ts",
"check:colors": "node scripts/check-contrast.js",
"seo:audit": "npm run build && node scripts/seo-audit.js"
},
"dependencies": {
"@astrojs/check": "^0.9.5",
"@astrojs/react": "^4.4.2",
"@hookform/resolvers": "^5.2.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"astro": "^5.15.2",
"clsx": "^2.1.1",
"framer-motion": "^12.23.24",
"lucide-react": "^0.554.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.67.0",
"tailwind-merge": "^3.4.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@astrojs/tailwind": "^6.0.2",
"@axe-core/playwright": "^4.11.0",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.56.1",
"@tailwindcss/typography": "^0.5.19",
"eslint": "^9.38.0",
"eslint-plugin-astro": "^1.4.0",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^3.4.18"
}
}