-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.22 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
69
70
71
72
73
74
75
{
"name": "orchestrateur-saisie-papier",
"private": true,
"version": "1.0.5",
"type": "module",
"packageManager": "pnpm@11.22.0",
"scripts": {
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"_format": "prettier --ignore-unknown .",
"format": "pnpm run _format -- --write",
"format:check": "pnpm run _format -- --list-different",
"prepare": "husky && vite-envs update-types",
"generate-api": "orval"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@inseefr/lunatic": "^3.12.1",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-router": "^1.127.9",
"@tanstack/react-router-devtools": "^1.127.9",
"axios": "^1.13.1",
"i18next": "^26.0.0",
"i18next-browser-languagedetector": "^8.2.0",
"oidc-spa": "^8.6.17",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^17.0.0",
"tsafe": "^1.8.12",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/router-plugin": "^1.127.9",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/coverage-v8": "4.1.10",
"eslint": "^9.30.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jsdom": "^30.0.0",
"lint-staged": "^17.0.0",
"nock": "^14.0.5",
"orval": "^8.0.0",
"prettier": "3.9.6",
"tailwindcss": "^4.1.11",
"typescript": "~5.9.0",
"typescript-eslint": "^8.35.1",
"vite": "^8.0.0",
"vite-envs": "^4.6.2",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "^4.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --list-different"
],
"!(*.js|*.jsx|*.ts|*.tsx)": "prettier --write --ignore-unknown --list-different"
}
}