-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.65 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.65 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
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
{
"name": "firmware-droid-client",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint firmware-droid-client",
"preview": "vite preview",
"build_docker_image": "docker ../build ./ -f ./Dockerfile -t firmwaredroid-frontend --platform=\"linux/amd64\"",
"dev_copy": "rm -R -f ../FirmwareDroid/firmware-droid-client/ && cp -v -r ./ ../FirmwareDroid/firmware-droid-client/",
"dev_deploy": "vite build && rm -R -f ../FirmwareDroid/firmware-droid-client/ && cp -v -r ./build ../FirmwareDroid/firmware-droid-client/",
"schema:export": "cd ../FirmwareDroid && docker compose exec -T web sh -lc 'cd /var/www/source && python manage.py graphql_schema --schema api.v2.schema.FirmwareDroidRootSchema.schema --out /var/www/firmware-droid-client/schema/schema.graphql --indent 2' && docker cp backend-worker:/var/www/firmware-droid-client/schema/schema.graphql ./firmware-droid-client/schema/schema.graphql && cp ./firmware-droid-client/schema/schema.graphql ../FMD-WebClient/schema/schema.graphql ",
"codegen": "graphql-codegen",
"codegen:all": "yarn schema:export && yarn codegen"
},
"dependencies": {
"@apollo/client": "^4.1.7",
"@hookform/resolvers": "^5.2.2",
"@melloware/react-logviewer": "^6.5.2",
"@popperjs/core": "^2.11.8",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-table": "^8.21.3",
"@yume-chan/pcm-player": "^1.0.0",
"@yume-chan/scrcpy": "^2.3.0",
"@yume-chan/scrcpy-decoder-tinyh264": "^2.1.0",
"@yume-chan/scrcpy-decoder-webcodecs": "^2.5.3",
"android-emulator-webrtc": "^1.0.18",
"axios": "^1.15.0",
"bootstrap": "^5.3.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"events": "^3.3.0",
"graphql": "^16.13.2",
"jwt-decode": "^4.0.0",
"lucide-react": "^1.7.0",
"msgpackr": "^1.11.9",
"next-themes": "^0.4.6",
"qs": "^6.15.1",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.5",
"react-dropzone": "^15.0.0",
"react-hook-form": "^7.72.1",
"react-resizable-panels": "^4.9.0",
"react-router": "^7.14.0",
"rxjs": "^7.8.2",
"sass": "^1.99.0",
"shadcn": "^4.2.0",
"styled-components": "^6.3.12",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"uuid": "^13.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@graphql-codegen/cli": "^6.2.1",
"@graphql-codegen/client-preset": "^5.2.4",
"@types/node": "^25.5.2",
"@types/qs": "^6.15.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.0",
"eslint-plugin-react-dom": "^4.2.3",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-react-x": "^4.2.3",
"globals": "^17.4.0",
"tw-animate-css": "^1.4.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.1",
"vite": "^8.0.8"
}
}