forked from zbycz/osmapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.76 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.76 KB
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
{
"name": "osmapp",
"version": "1.7.0",
"engines": {
"node": "^20"
},
"scripts": {
"dev": "next",
"test": "jest",
"lint": "next lint --max-warnings=0",
"lintfix": "prettier . --write && next lint --fix",
"prettify": "prettier . --write",
"build": "next build",
"start": "next start",
"dist": "next build && next export -o dist",
"postinstall": "copyfiles -u 2 node_modules/maplibre-gl-indoorequal/sprite/* public/icons-indoor/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --no-stash -v"
}
},
"dependencies": {
"@babel/runtime": "^7.27.6",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.1.2",
"@mui/lab": "^7.0.0-beta.14",
"@mui/material": "^7.1.2",
"@mui/material-nextjs": "^7.1.1",
"@openstreetmap/id-tagging-schema": "^6.11.0",
"@sentry/nextjs": "^8.34.0",
"@teritorio/openmaptiles-gl-language": "^1.5.4",
"@xmldom/xmldom": "^0.9.8",
"accept-language-parser": "^1.5.0",
"autosuggest-highlight": "^3.3.4",
"canvas": "^3.1.1",
"canvg": "^4.0.3",
"date-fns": "^4.1.0",
"dice-coefficient": "^2.1.1",
"image-size": "^2.0.2",
"isomorphic-unfetch": "^4.0.2",
"isomorphic-xml2js": "^0.1.3",
"js-cookie": "^3.0.5",
"js-md5": "^0.8.3",
"jss": "^10.10.0",
"lodash": "^4.17.21",
"maplibre-gl": "5.6.0",
"maplibre-gl-indoorequal": "^1.3.0",
"next": "^15.3.4",
"next-codegrid": "^1.0.3",
"next-cookies": "^2.0.3",
"open-location-code": "^1.0.3",
"opening_hours": "^3.9.0",
"osm-auth": "^2.6.0",
"pg": "^8.16.2",
"pg-format": "^1.0.4",
"react": "^19.1.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^19.1.0",
"react-jss": "^10.6.0",
"react-query": "^3.39.3",
"react-split-pane": "^0.1.92",
"react-zoom-pan-pinch": "^3.7.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/autosuggest-highlight": "^3.2.3",
"@types/jest": "^30.0.0",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.18",
"@types/pg-format": "^1.0.5",
"@types/react-custom-scrollbars": "^4.0.13",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/typescript-estree": "^8.34.1",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-local-rules": "^3.0.2",
"husky": "^4",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"lint-staged": "^16.1.2",
"prettier": "^3.6.0",
"typescript": "^5.8.3"
},
"resolutions": {
"wrap-ansi": "npm:wrap-ansi@^7"
}
}