-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.69 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.69 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
{
"name": "portfolio",
"homepage": "https://jcommaret.github.io/",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "GPL-3.0",
"author": {
"name": "Jérôme Commaret",
"url": "https://jcommaret.github.io/"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build && npm run copy-404",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"generate-sitemap": "node generateSitemap.js",
"copy-404": "cp dist/index.html dist/404.html",
"seo-check": "echo 'Vérifiez votre SEO avec:' && echo '1. Google Lighthouse' && echo '2. https://search.google.com/test/rich-results' && echo '3. https://pagespeed.web.dev/'"
},
"dependencies": {
"@ionic/react": "^8.2.6",
"ionicons": "^7.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^6.26.0",
"sanitize-html": "^2.15.0",
"sharp": "^0.33.5",
"vite-imagetools": "^7.0.5"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/sanitize-html": "^2.15.0",
"@types/sass": "^1.43.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"gh-pages": "^6.1.1",
"sass": "^1.81.0",
"typescript": "^5.2.2",
"vite": "^7.2.2",
"vite-plugin-sitemap": "^0.7.1"
}
}