-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.78 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
{
"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",
"@symfony/webpack-encore": "^5.0.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",
"@uiw/react-md-editor": "^4.0.0",
"autoprefixer": "^10.0.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.31.1",
"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",
"ol": "8.2.0",
"postcss": "^8.0.0",
"postcss-loader": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-hook-form": "^7.45.1",
"simple-zustand-devtools": "^1.1.0",
"tsafe": "^1.6.5",
"tss-react": "^4.9.12",
"type-route": "^1.0.1",
"usehooks-ts": "^3.1.0",
"uuid": "^10.0.0",
"validator": "^13.11.0",
"yup": "^1.2.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@hookform/devtools": "^4.3.1",
"@types/bazinga-translator": "^3.0.0",
"@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",
"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",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.0.0",
"regenerator-runtime": "^0.14.0",
"sass": "^1.63.6",
"sass-loader": "^16.0.0",
"ts-loader": "^9.4.4",
"typescript": "^5.0.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-notifier": "^1.15.0"
},
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "yarn dev --watch",
"build": "encore production",
"prebuild": "yarn clean && react-dsfr update-icons",
"lint": "eslint assets/ --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --check assets/",
"format:fix": "prettier --write assets/",
"clean": "rm -rf public/build",
"predev": "yarn clean && react-dsfr update-icons",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:headed": "cypress run --headed",
"prepare": "husky"
},
"browserslist": [
"defaults"
],
"lint-staged": {
"*.{js,ts,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"
]
}
}