-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.89 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
{
"name": "videoshare",
"private": true,
"version": "1.5.0",
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace @videoshare/web",
"dev:web": "npm run dev --workspace @videoshare/web",
"dev:server": "npm run dev --workspace @videoshare/server",
"dev:desktop": "npm run tauri:dev --workspace @videoshare/desktop",
"dev:desktop:debug": "npm run tauri:dev:debug --workspace @videoshare/desktop",
"clean:desktop": "npm run tauri:clean --workspace @videoshare/desktop",
"package:desktop": "node infra/scripts/package-desktop.mjs",
"build:host": "npm run build --workspace @videoshare/web && npm run build --workspace @videoshare/server",
"host:start": "powershell -ExecutionPolicy Bypass -File infra/scripts/start-host.ps1",
"host:stop": "powershell -ExecutionPolicy Bypass -File infra/scripts/stop-host.ps1",
"host:ngrok": "powershell -ExecutionPolicy Bypass -File infra/scripts/start-ngrok.ps1",
"version": "node infra/scripts/sync-version.mjs && git add apps/desktop/package.json apps/desktop/src-tauri/tauri.conf.json apps/desktop/src-tauri/Cargo.toml",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"format": "prettier --write .",
"docker:up": "docker compose -f infra/docker-compose.yml up --build",
"docker:down": "docker compose -f infra/docker-compose.yml down"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=11.0.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
}
}