-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.71 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
{
"name": "vite-insee-starter",
"private": true,
"repository": "https://github.com/InseeFrLab/vite-insee-starter.git",
"license": "MIT",
"version": "3.0.1",
"type": "module",
"scripts": {
"postinstall": "vite-envs update-types",
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"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.32.4",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.2.0",
"@mui/material": "^9.2.0",
"@mui/system": "^9.2.0",
"@mui/x-data-grid": "^9.8.0",
"@mui/x-date-pickers": "^9.8.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-router": "^1.170.17",
"axios": "^1.18.1",
"dayjs": "^1.11.21",
"evt": "^2.5.9",
"i18nifty": "^4.0.6",
"oidc-spa": "10.2.11",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tsafe": "^1.8.12",
"tss-react": "^4.9.21",
"vite-envs": "^4.7.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tanstack/router-devtools": "^1.167.0",
"@tanstack/router-plugin": "^1.168.19",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-tss-unused-classes": "^1.0.4",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"node-fetch": "^3.3.2",
"orval": "^8.20.0",
"prettier": "^3.9.4",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.3",
"vitest": "^4.1.9"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
}
}