-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.62 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "public-enemy",
"version": "2.1.8",
"description": "Check and test questionnaire models",
"repository": {
"type": "git",
"url": "https://github.com/InseeFr/Public-Enemy.git"
},
"author": "INSEE (http://www.insee.fr)",
"license": "MIT",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.15.3",
"@mui/lab": "5.0.0-alpha.115",
"@mui/material": "^5.15.3",
"@tanstack/react-query": "^5.17.9",
"@types/node": "^16.18.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"notistack": "^2.0.8",
"oidc-spa": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.39.4",
"react-intl": "^6.2.1",
"react-router-dom": "^6.4.3",
"tss-react": "^4.4.4",
"typescript": "^4.8.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"generate-entrypoint": "node scripts/generate-entrypoint.js",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest --coverage"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx,json,md,ts,tsx}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@tanstack/eslint-plugin-query": "^5.17.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.2",
"@welldone-software/why-did-you-render": "^7.0.1",
"commitlint": "^17.3.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.2",
"jsdom": "^21.1.0",
"lint-staged": "^13.0.4",
"prettier": "^2.7.1",
"vite": "^4.1.5",
"vite-plugin-top-level-await": "^1.3.1",
"vite-tsconfig-paths": "^4.0.5",
"vitest": "^0.29.2"
}
}