-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "meshcore-webagent",
"version": "1.20.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings 0",
"type-check": "tsc --noEmit",
"spell-check": "cspell \"**\" --no-progress --dot",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"fuse.js": "^7.4.2",
"i18next": "^26.3.5",
"leaflet": "^1.9.4",
"lucide-react": "^1.23.0",
"next": "16.2.10",
"qrcode": "^1.5.4",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/leaflet": "^1.9.21",
"@types/node": "^26.1.1",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/w3c-web-serial": "^1.0.8",
"@types/web-bluetooth": "^0.0.21",
"cspell": "^10.0.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.10",
"eslint-plugin-tsdoc": "^0.5.2",
"prettier": "^3.9.4",
"tailwindcss": "^4",
"typescript": "^6.0.3"
},
"overrides": {
"eslint-plugin-tsdoc": {
"@typescript-eslint/utils": "^8.61.1"
}
}
}