-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.5 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
82
83
{
"name": "stromae-dsfr",
"private": true,
"version": "1.3.3-rc.0",
"type": "module",
"scripts": {
"prepare": "husky && vite-envs update-types",
"dev": "vite",
"check": "tsc --noEmit",
"build": "tsc && vite build",
"lint": "eslint ./src",
"preview": "vite preview",
"_format": "prettier --ignore-unknown .",
"format": "npm run _format -- --write",
"format:check": "npm run _format -- --list-different",
"predev": "react-dsfr update-icons",
"prebuild": "react-dsfr update-icons",
"generate-api-client": "tsx scripts/generate-api-client.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.13.6",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@inseefr/lunatic": "^3.4.10",
"@inseefr/lunatic-dsfr": "^2.4.4",
"@mui/material": "^5.16.7",
"@tanstack/react-query": "^5.52.0",
"@tanstack/react-router": "^1.49.2",
"axios": "^1.7.7",
"he": "^1.2.0",
"i18nifty": "^3.2.2",
"oidc-spa": "^5.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-hot-toast": "^2.4.1",
"tsafe": "^1.7.2",
"tss-react": "^4.9.13",
"zod": "^3.23.8"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.0",
"@eslint/js": "^9.9.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/he": "^1.2.3",
"@types/node": "^22.7.3",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.2",
"dotenv-flow": "^4.1.0",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc-d48603a5-20240813",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"orval": "^7.0.1",
"prettier": "^3.3.3",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"vite": "^5.4.8",
"vite-envs": "^4.4.5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --list-different"
],
"!(*.js|*.jsx|*.ts|*.tsx)": "prettier --write --ignore-unknown --list-different"
}
}