This repository was archived by the owner on Jun 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "eddiehub-live",
"version": "1.0.1",
"private": true,
"type": "module",
"dependencies": {
"@headlessui/react": "^1.7.5",
"@heroicons/react": "^2.0.13",
"eslint-config-prettier": "^8.5.0",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-leaflet": "^4.0.0",
"serve": "^12.0.1",
"socket.io-client": "^4.5.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^3.0.0",
"autoprefixer": "10.4.5",
"eslint": "^8.29.0",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"postcss": "^8.4.14",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.0.24",
"vite": "^4.0.0"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start:prod": "serve -s dist",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"prepare": "husky install",
"lint": "eslint --ignore-path .gitignore src/**/*.js src/**/*.jsx"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{cjs,js,ts,css,scss,svelte}": [
"prettier --write --ignore-path .gitignore --plugin-search-dir=."
]
}
}