-
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.53 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.53 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": "gecko",
"productName": "Gecko",
"version": "1.4.4",
"description": "Your wild home media server",
"main": "dist-server/server.js",
"private": true,
"scripts": {
"start": "tsx src/server.ts",
"start:dev": "concurrently -k -n vite,server -c blue,green \"vite --config vite.renderer.config.mts\" \"tsx watch src/server.ts\"",
"build:ui": "vite build --config vite.renderer.config.mts",
"build:server": "node scripts/build-server.mjs",
"build": "npm run build:ui && npm run build:server",
"lint": "eslint --ext .ts,.tsx .",
"build:installer:win": "powershell -ExecutionPolicy Bypass -File installer/windows/build-windows.ps1"
},
"keywords": [],
"author": {
"name": "Dani Pardo",
"email": "danielp.5@hotmail.com"
},
"license": "MIT",
"repository": "https://github.com/Pardo24/Gecko",
"devDependencies": {
"@tailwindcss/vite": "^4.2.1",
"@types/express": "^5.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^5.1.4",
"concurrently": "^9.1.0",
"esbuild": "^0.25.12",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"tailwindcss": "^4.2.1",
"tsx": "^4.19.2",
"typescript": "~4.5.4",
"vite": "^5.4.21"
},
"dependencies": {
"express": "^4.21.1",
"lucide-react": "^0.576.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"simple-icons": "^16.10.0"
}
}