-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
89 lines (89 loc) · 2.58 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
{
"name": "osmapp",
"version": "1.6.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.25.7",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^6.1.3",
"@mui/lab": "^6.0.0-beta.11",
"@mui/material": "^6.1.3",
"@mui/material-nextjs": "^6.1.3",
"@openstreetmap/id-tagging-schema": "^6.8.1",
"@sentry/nextjs": "^8.34.0",
"@teritorio/openmaptiles-gl-language": "^1.5.4",
"@xmldom/xmldom": "^0.9.3",
"accept-language-parser": "^1.5.0",
"autosuggest-highlight": "^3.3.4",
"canvas": "^2.11.2",
"canvg": "^4.0.2",
"date-fns": "^4.1.0",
"dice-coefficient": "^2.1.1",
"image-size": "^1.1.1",
"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": "v5.0.0-pre.8",
"maplibre-gl-indoorequal": "^1.2.0",
"next": "^14.2.15",
"next-codegrid": "^1.0.3",
"next-cookies": "^2.0.3",
"opening_hours": "^3.8.0",
"osm-auth": "^2.5.0",
"react": "^18.3.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.3.1",
"react-jss": "^10.6.0",
"react-query": "^3.39.3",
"react-split-pane": "^0.1.92",
"react-zoom-pan-pinch": "^3.6.1"
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/autosuggest-highlight": "^3.2.3",
"@types/jest": "^29.5.13",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.10",
"@types/react-custom-scrollbars": "^4.0.13",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/typescript-estree": "^8.8.1",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"eslint-config-prettier": "^9.1.0",
"husky": "^4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"resolutions": {
"wrap-ansi": "npm:wrap-ansi@^7"
}
}