-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "map",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"serveTiles": "python -m http.server 8000 --directory ../MapTiles",
"docker Build ARM64 local": "docker build --platform linux/arm64 --file Dockerfile --tag dercraker0/react-map:dev .",
"docker Build ARM64 & Push": "docker build --platform linux/arm64 --file Dockerfile --tag dercraker0/react-map:dev --push .",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mantine/core": "^7.0.0",
"@mantine/hooks": "^7.0.0",
"@microsoft/signalr": "^7.0.11",
"@mui/material": "^5.14.12",
"@tabler/icons-react": "^2.35.0",
"@tiptap/extension-link": "^2.1.11",
"@tiptap/react": "^2.1.11",
"@tiptap/starter-kit": "^2.1.11",
"axios": "^1.5.0",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"leaflet": "^1.9.4",
"mapbox-gl": "^2.15.0",
"postcss": "^8.4.30",
"postcss-preset-mantine": "^1.7.0",
"postcss-simple-vars": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-leaflet": "^4.2.1",
"sass": "^1.68.0",
"scss": "^0.2.4",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@types/leaflet": "^1.9.5",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.50.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"typescript": "^5.2.2",
"vite": "^4.4.9"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}