-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
56 lines (56 loc) · 2.01 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
{
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.25.8",
"@babel/preset-react": "^7.25.7",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.3",
"@hotwired/stimulus": "^3.2.2",
"@mapbox/geojson-rewind": "^0.5.2",
"@mapbox/geojsonhint": "^3.3.0",
"@popperjs/core": "^2.11.8",
"@symfony/stimulus-bridge": "^3.2.2",
"@symfony/webpack-encore": "^5.0.0",
"@types/leaflet": "^1.9.12",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"apexcharts": "^3.53.0",
"autoprefixer": "^10.4.20",
"codejar": "^4.2.0",
"core-js": "^3.38.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.1",
"file-loader": "^6.2.0",
"highlight.js": "^11.9.0",
"leaflet": "^1.9.4",
"postcss": "^8.4.31",
"postcss-loader": "^7.3.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"regenerator-runtime": "^0.14.1",
"tailwindcss": "^3.4.14",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-notifier": "^1.15.0"
},
"license": "ISC",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"geojsonhint": "set -e ; for f in assets/regions/*/*.geojson ; do echo $f; geojsonhint \"$f\" ; done",
"rewind": "set -e ; for f in assets/regions/*/*.geojson ; do echo $f; geojson-rewind \"$f\" > \"$f.tmp\" && mv \"$f.tmp\" \"$f\" ; done",
"lint": "eslint \"assets/typescript\"",
"lint:fix": "eslint --fix \"assets/typescript\""
},
"browserslist": [
"defaults"
]
}