-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.64 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
{
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@codegouvfr/react-dsfr": "^1.10.11",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.11.0",
"@fvilers/disable-react-devtools": "^1.3.0",
"@hookform/resolvers": "^3.1.1",
"@mui/material": "^6.0.0",
"@mui/x-date-pickers": "^7.21.0",
"@tanstack/query-sync-storage-persister": "^5.51.15",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-query-devtools": "^5.0.0",
"@tanstack/react-query-persist-client": "^5.51.15",
"@tiptap/extension-image": "^2.11.3",
"@tiptap/extension-link": "^2.11.3",
"@tiptap/extension-placeholder": "^2.11.3",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.0.0",
"date-fns": "^4.0.0",
"date-fns-tz": "^3.1.3",
"dotenv": "^16.3.1",
"geopf-extensions-openlayers": "^1.0.0-beta.0",
"geostyler-mapbox-parser": "^5.0.1",
"geostyler-openlayers-parser": "^4.3.0",
"geostyler-qgis-parser": "^2.0.0",
"geostyler-sld-parser": "^5.4.0",
"geostyler-style": "^8.0.0",
"i18nifty": "^3.0.0",
"intl-messageformat": "^10.5.14",
"markdown-it": "^14.1.0",
"ol": "8.2.0",
"postcss": "^8.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dsfr-tiptap": "^1.0.3",
"react-error-boundary": "^4.0.10",
"react-hook-form": "^7.45.1",
"simple-zustand-devtools": "^1.1.0",
"tiptap-markdown": "^0.8.10",
"tsafe": "^1.6.5",
"tss-react": "^4.9.12",
"type-route": "^1.0.1",
"usehooks-ts": "^3.1.0",
"uuid": "^11.0.0",
"validator": "^13.11.0",
"vite": "^6.0",
"vite-plugin-run": "^0.6",
"vite-plugin-symfony": "^7.0",
"yup": "^1.2.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"cross-env": "^7.0.3",
"cypress": "^13.1.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.0.0",
"sass-embedded": "^1.83.4",
"typescript": "^5.1.6"
},
"scripts": {
"dev": "yarn prebuild && vite",
"build": "tsc --noEmit && vite build",
"build:dev": "yarn prebuild && tsc --noEmit && cross-env NODE_ENV=development vite build --mode development",
"prebuild": "yarn clean && react-dsfr update-icons",
"clean": "rm -rf public/build",
"lint": "eslint assets/ --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --check assets/",
"format:fix": "prettier --write assets/",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:headed": "cypress run --headed",
"prepare": "husky",
"type-check": "tsc --noEmit"
},
"browserslist": [
"last 2 versions",
"> 1%"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,css,scss,xml,yml,yaml,html}": [
"prettier --write"
],
"*.php": [
"vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php"
],
"*.twig": [
"vendor/bin/twig-cs-fixer lint --fix"
]
}
}