-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 2.53 KB
/
package.json
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
{
"name": "vite-insee-starter",
"private": true,
"repository": "https://github.com/InseeFrLab/vite-insee-starter.git",
"license": "MIT",
"version": "2.0.5",
"type": "module",
"scripts": {
"postinstall": "vite-envs update-types",
"dev": "vite --host",
"build": "tsc && 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"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.16.4",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@mui/system": "^6.1.9",
"@mui/x-data-grid": "^7.22.3",
"@mui/x-date-pickers": "^7.22.3",
"@tanstack/react-query": "^5.61.5",
"@tanstack/react-router": "^1.83.0",
"axios": "^1.7.8",
"dayjs": "^1.11.13",
"i18nifty": "^3.2.3",
"oidc-spa": "^5.6.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsafe": "^1.8.5",
"tss-react": "^4.9.13",
"vite-envs": "^4.4.6",
"vite-tsconfig-paths": "^5.1.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tanstack/router-devtools": "^1.83.0",
"@tanstack/router-vite-plugin": "^1.83.0",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-tss-unused-classes": "^1.0.3",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"node-fetch": "^3.3.2",
"orval": "^7.3.0",
"prettier": "^3.4.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
}
}