-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.4 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.4 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
{
"name": "devbox-pro",
"version": "1.0.6",
"description": "Cross-platform local development server with multi-PHP support",
"main": "src/main/main.js",
"author": "DevBox Pro Team",
"license": "MIT",
"scripts": {
"start": "electron .",
"dev": "concurrently \"npm run dev:renderer\" \"wait-on http://localhost:3000 && electron .\"",
"dev:renderer": "cd src/renderer && vite",
"build:renderer": "cd src/renderer && vite build",
"build:win": "npm run build:renderer && npm run test:binary-urls && electron-builder --win",
"build:mac": "npm run build:renderer && npm run test:binary-urls && electron-builder --mac",
"build:all": "npm run build:renderer && electron-builder --win --mac",
"postinstall": "electron-builder install-app-deps",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:binary-urls": "node scripts/check-binary-urls.js",
"test:binary-urls:all": "node scripts/check-binary-urls.js --all",
"test:main": "vitest run --project main",
"test:renderer": "vitest run --project renderer",
"test:e2e": "npm run build:renderer && playwright test"
},
"dependencies": {
"adm-zip": "^0.5.16",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.7",
"express": "^5.0.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"http-proxy": "^1.18.1",
"node-forge": "^1.3.3",
"sudo-prompt": "^9.2.1",
"tar": "^7.0.0",
"tree-kill": "^1.2.2",
"unzipper": "^0.12.3",
"uuid": "^11.0.0",
"ws": "^8.14.2",
"yaml": "^2.3.4"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^4.0.18",
"autoprefixer": "^10.4.16",
"concurrently": "^9.0.0",
"electron": "^40.0.0",
"electron-builder": "^26.0.0",
"jsdom": "^28.1.0",
"playwright": "^1.58.2",
"postcss": "^8.4.32",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.0",
"tailwindcss": "^4.0.0",
"vite": "^7.0.0",
"vitest": "^4.0.18",
"wait-on": "^9.0.0"
},
"engines": {
"node": ">=24.0.0"
},
"build": {
"extends": "electron-builder.config.js"
}
}