-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.1 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.1 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
{
"name": "odice",
"version": "0.1.0",
"private": true,
"description": "ODICE — Outil de Décision pour les mouvements de viandes en contexte de Peste Porcine Africaine",
"type": "module",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"start": "serve -s dist -l tcp://0.0.0.0:${PORT:-3000}",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fixture:abattoirs": "node scripts/extract-abattoirs-fixture.ts",
"fixture:abattoirs:check": "node scripts/extract-abattoirs-fixture.ts --check",
"validate": "pnpm format && pnpm lint:fix && pnpm typecheck && pnpm fixture:abattoirs:check && pnpm test",
"validate:full": "pnpm validate && pnpm test:e2e"
},
"dependencies": {
"@gouvfr/dsfr": "^1.14.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.16.0",
"serve": "^14.2.5",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@playwright/test": "^1.49.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^25.6.0",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"jsdom": "^29.1.1",
"postcss": "^8.5.10",
"prettier": "^3.8.2",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.8",
"xlsx": "^0.18.5"
}
}