-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
119 lines (119 loc) · 3.32 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "bauhaus",
"version": "4.1.6",
"type": "module",
"description": "Web application for the management of concepts, classifications and other statistical objects",
"repository": {
"type": "git",
"url": "https://github.com/InseeFr/Bauhaus"
},
"license": "MIT",
"author": "INSEE (http://www.insee.fr)",
"private": true,
"scripts": {
"pre-script": "cross-env NODE_OPTIONS=--openssl-legacy-provider",
"lint": "npx eslint && npx stylelint \"src/**/*.css\"",
"test": "vitest",
"test:coverage": "cross-env CI=true vitest run --coverage",
"start": "npm run pre-script vite",
"build": "npm run pre-script cross-env VITE_INSEE=true vite build && npm run create-zip",
"create-zip": "cd build && bestzip build.zip *",
"pre-push": "npm run format:check && npm run lint && npm run test:coverage",
"prepare": "husky",
"_format": "prettier 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"format": "npm run _format -- --write",
"format:check": "npm run _format -- --list-different",
"typecheck": "tsc --noEmit"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"resolutions": {
"react": "18.3.1",
"react-dom": "18.3.1",
"loader-utils": "2.0.4",
"shell-quote": "1.8.1"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@playwright/test": "^1.48.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/dompurify": "^3.0.5",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.9.0",
"@types/react-dom": "^18.3.1",
"@types/react-select": "^5.0.1",
"@types/react-sortable-tree": "^0.3.23",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-istanbul": "^2.1.8",
"bestzip": "^2.2.1",
"cross-env": "^7.0.3",
"esbuild-plugin-react-virtualized": "^1.0.4",
"eslint": "^9.16.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.9.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"react-app-polyfill": "^3.0.0",
"sass-embedded": "^1.80.6",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"typescript-eslint": "^8.13.0",
"vite": "^6.0.3",
"vite-envs": "^4.4.10",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"dependencies": {
"@tanstack/react-query": "^5.59.20",
"dayjs": "^1.11.6",
"dompurify": "2.5.6",
"draft-js": "0.11.7",
"draft-js-export-html": "1.4.1",
"draft-js-import-html": "1.2.1",
"draftjs-md-converter": "1.5.2",
"events": "^3.3.0",
"file-saver": "1.3.3",
"oidc-spa": "^5.3.0",
"primereact": "^10.8.4",
"query-string": "^9.1.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-draft-wysiwyg": "1.15.0",
"react-dropzone": "11.0.1",
"react-hook-form": "^7.34.2",
"react-modal": "^3.14.4",
"react-redux": "^7.2.6",
"react-router-dom": "6.27.0",
"react-select": "1.3.0",
"react-sliding-side-panel": "1.1.8",
"react-sortable-tree": "2.8.0",
"redux": "^4.2.0",
"redux-thunk": "^2.4.2",
"zod": "^3.22.4"
},
"prettier": {
"bracketSpacing": true,
"importOrderSeparation": true,
"importOrder": [
"^@components/(.*)$",
"^@sdk/(.*)$",
"^@utils/(.*)$",
"^[./]"
],
"semi": true,
"singleQuote": true,
"useTabs": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
}
}