-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.86 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.86 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vite-insee-starter",
"private": true,
"repository": "https://github.com/InseeFrLab/vite-insee-starter.git",
"license": "MIT",
"version": "2.9.5",
"type": "module",
"scripts": {
"postinstall": "vite-envs update-types",
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint ./src",
"preview": "vite preview",
"_format": "prettier '**/*.{ts,tsx,json,md}'",
"format": "npm run _format -- --write",
"format:check": "npm run _format -- --list-different",
"predev": "react-dsfr update-icons",
"prebuild": "react-dsfr update-icons",
"generate-todos-api-client": "tsx scripts/generate-todos-api-client.ts",
"prepare": "husky",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.31.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.1.2",
"@mui/material": "^7.1.2",
"@mui/system": "^7.1.1",
"@mui/x-data-grid": "^8.5.3",
"@mui/x-date-pickers": "^8.5.3",
"@tanstack/react-query": "^5.81.2",
"@tanstack/react-router": "^1.121.34",
"axios": "^1.10.0",
"dayjs": "^1.11.13",
"evt": "^2.5.9",
"i18nifty": "^4.0.6",
"oidc-spa": "10.0.7",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsafe": "^1.8.12",
"tss-react": "^4.9.20",
"vite-envs": "^4.6.2",
"vite-tsconfig-paths": "^5.1.4",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@tanstack/router-devtools": "^1.121.34",
"@tanstack/router-vite-plugin": "^1.121.34",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.15.32",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.29.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-tss-unused-classes": "^1.0.3",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.1.2",
"node-fetch": "^3.3.2",
"orval": "^7.10.0",
"prettier": "^3.6.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"vite": "^7.0.0",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
}
}