forked from zbycz/osmapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.19 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
{
"name": "osmapp",
"version": "1.3.0",
"engines": {
"node": "^18"
},
"scripts": {
"dev": "next",
"test": "jest",
"lint": "eslint . --report-unused-disable-directives",
"lintfix": "prettier . --write && eslint ./src ./pages --report-unused-disable-directives --fix",
"prettify": "prettier . --write",
"build": "next build",
"start": "next start",
"dist": "next build && next export -o dist"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "4.0.0-alpha.58",
"@openstreetmap/id-tagging-schema": "^6.1.0",
"@sentry/browser": "^6.5.1",
"@sentry/node": "^6.5.1",
"accept-language-parser": "^1.5.0",
"autosuggest-highlight": "^3.1.1",
"isomorphic-unfetch": "^3.1.0",
"isomorphic-xml2js": "^0.1.3",
"jest": "^27.0.4",
"js-cookie": "^2.2.1",
"js-md5": "^0.8.3",
"jss": "^10.6.0",
"lodash": "^4.17.21",
"maplibre-gl": "^3.3.1",
"next": "^13.4.3",
"next-cookies": "^2.0.3",
"next-pwa": "^5.2.21",
"osm-auth": "^2.4.0",
"react": "^18.2.0",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^18.2.0",
"react-jss": "^10.6.0",
"react-split-pane": "^0.1.92",
"react-zoom-pan-pinch": "^3.3.0",
"simple-opening-hours": "^0.1.1",
"styled-components": "^5.3.0",
"styled-jsx": "^3.4.4"
},
"devDependencies": {
"@types/autosuggest-highlight": "^3.2.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.27.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"typescript": "^5.0.4"
}
}