forked from meshtastic/network-management-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.45 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "meshtastic-network-management-client",
"version": "0.3.1",
"description": "Meshtastic client for network management",
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"rust:dev": "tauri dev -- --no-default-features --",
"rust:build": "tauri build --",
"rust:test": "cd src-tauri; cargo test",
"ui:dev": "vite",
"ui:build": "tsc && vite build",
"ui:lint": "biome lint src",
"ui:format": "biome format --write src",
"ui:check": "biome check src",
"ui:check:ci": "biome ci src --config-path=.",
"ui:test": "jest --passWithNoTests",
"ui:preview": "vite preview"
},
"dependencies": {
"@deck.gl/carto": "^8.9.9",
"@deck.gl/extensions": "^8.9.9",
"@deck.gl/mapbox": "^8.9.9",
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@heroicons/react": "^2.0.13",
"@radix-ui/react-accordion": "^1.1.0",
"@radix-ui/react-checkbox": "^1.0.2",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toggle": "^1.0.1",
"@radix-ui/react-tooltip": "^1.0.5",
"@reduxjs/toolkit": "^1.8.6",
"@tanstack/react-table": "8.7.9",
"@tauri-apps/api": "^1.1.0",
"base64-js": "^1.5.1",
"chart.js": "^4.2.1",
"deck.gl": "^8.9.7",
"emoji-mart": "^5.5.2",
"heroicons": "^2.0.13",
"i18next": "^23.2.8",
"i18next-browser-languagedetector": "^7.1.0",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"lodash.mergewith": "^4.6.2",
"lodash.uniqby": "^4.7.0",
"lucide-react": "^0.211.0",
"mapbox-gl": "^2.12.1",
"maplibre-gl": "^2.4.0",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-charts": "3.0.0-beta.54",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-i18next": "^13.0.1",
"react-json-view": "^1.21.3",
"react-map-gl": "^7.0.19",
"react-redux": "^8.0.4",
"react-router-dom": "^6.6.1",
"react-table": "^7.8.0",
"react-tsparticles": "^2.7.1",
"react-use": "^17.4.0",
"reagraph": "^4.15.17",
"redux-logger": "^3.0.6",
"tailwindcss-radix": "^2.8.0",
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log#v1",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#v1",
"timeago-react": "^3.0.5",
"tsparticles": "^2.7.1",
"tsparticles-engine": "^2.7.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@tauri-apps/cli": "^1.1.1",
"@types/jest": "^29.2.0",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.merge": "^4.6.7",
"@types/lodash.mergewith": "^4.6.7",
"@types/lodash.uniqby": "^4.7.9",
"@types/node": "^18.11.2",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@types/react-redux": "^7.1.24",
"@types/react-table": "^7.7.14",
"@types/redux-logger": "^3.0.9",
"@types/uuid": "^9.0.1",
"@types/w3c-web-serial": "^1.0.3",
"@vitejs/plugin-react": "^3.0.1",
"autoprefixer": "^10.4.13",
"jest": "^29.2.2",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"vite": "^4.0.4"
}
}