-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.59 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.59 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
{
"name": "crafter",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "Application React moderne construite avec Vite, TypeScript et Tailwind CSS",
"author": "DiscoData",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"type-check": "tsc --noEmit",
"preview": "vite preview"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@react-pdf/renderer": "^4.3.1",
"clsx": "^2.1.1",
"lucide-react": "^1.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-helmet-async": "^3.0.0",
"react-hook-form": "^7.65.0",
"react-router-dom": "^7.9.4",
"serve": "^14.2.5",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"overrides": {
"eslint-plugin-react-hooks": {
"eslint": "$eslint"
}
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@tailwindcss/postcss": "^4.1.16",
"@types/node": "^24.9.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.0",
"autoprefixer": "^10.4.21",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.0.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.16",
"typescript": "~5.9.0",
"typescript-eslint": "^8.18.2",
"vite": "^8.0.0"
}
}