-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.43 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
{
"name": "vite-insee-starter",
"private": true,
"version": "2.0.4",
"type": "module",
"scripts": {
"postinstall": "vite-envs update-types",
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"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"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.13.5",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.6",
"@mui/material": "^6.1.6",
"@mui/system": "^6.1.6",
"@mui/x-data-grid": "^7.22.2",
"@mui/x-date-pickers": "^7.22.2",
"@tanstack/react-query": "^5.51.23",
"@tanstack/react-router": "^1.47.5",
"axios": "^1.7.1",
"dayjs": "^1.11.7",
"i18nifty": "^3.2.2",
"oidc-spa": "^5.2.7",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"tsafe": "^1.7.2",
"tss-react": "^4.9.13",
"vite-envs": "^4.3.3",
"vite-tsconfig-paths": "^5.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@tanstack/router-devtools": "^1.53.1",
"@tanstack/router-vite-plugin": "^1.52.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-tss-unused-classes": "^1.0.2",
"husky": "^4.3.8",
"lint-staged": "^15.2.2",
"node-fetch": "^3.3.2",
"orval": "^7.0.1",
"prettier": "^3.2.5",
"tsx": "^4.17.0",
"typescript": "^5.4.5",
"vite": "^5.4.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
}
}