-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.47 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.47 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
{
"name": "neurovoid",
"private": true,
"version": "0.1.0",
"workspaces": [
"backend",
"apps/desktop",
"apps/mobile"
],
"scripts": {
"dev": "npm run dev:desktop",
"install:all": "npm install --workspaces",
"start:backend": "npm --workspace backend start",
"dev:desktop": "npm --workspace apps/desktop run dev",
"dev:mobile": "npm --workspace apps/mobile start",
"android:mobile": "npm --workspace apps/mobile run android",
"ios:mobile": "npm --workspace apps/mobile run ios",
"build:desktop": "npm --workspace apps/desktop run build",
"bundle:desktop": "npm --workspace apps/desktop run bundle",
"bundle:desktop:windows": "npm --workspace apps/desktop run bundle:windows",
"bundle:desktop:windows:cross": "npm --workspace apps/desktop run bundle:windows:cross",
"bundle:desktop:linux": "npm --workspace apps/desktop run bundle:linux",
"bundle:mobile:android:apk": "npm --workspace apps/mobile run build:android:apk",
"bundle:mobile:android:aab": "npm --workspace apps/mobile run build:android:aab",
"bundle:mobile:ios": "npm --workspace apps/mobile run build:ios",
"bundle:desktop:publish": "node scripts/package-desktop-download.mjs",
"bundle:downloads:publish": "node scripts/package-desktop-download.mjs",
"bundle:desktop:zip": "node scripts/package-desktop-download.mjs",
"preview:desktop": "npm --workspace apps/desktop run preview",
"tauri:desktop": "npm --workspace apps/desktop run tauri"
}
}