-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.69 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
{
"name": "audiomesh-monorepo",
"private": true,
"workspaces": [
"apps/web",
"apps/server",
"apps/desktop",
"apps/mobile",
"shared/common",
"shared/client-common",
"shared/desktop-host"
],
"scripts": {
"web:dev": "yarn workspace audiomesh-web start",
"web:Dev": "yarn web:dev",
"web:build": "yarn workspace audiomesh-web build",
"web:test": "yarn workspace audiomesh-web test",
"common:test": "yarn workspace audiomesh-web test ../shared/common",
"common:build": "yarn workspace audiomesh-common build",
"web:lint": "yarn workspace audiomesh-web lint",
"server:start": "yarn workspace audiomesh-server start",
"server:build": "yarn workspace audiomesh-server build",
"server:test": "yarn workspace audiomesh-server test",
"desktop:start": "yarn workspace audiomesh-desktop start",
"desktop:build": "yarn workspace audiomesh-desktop build",
"desktop:test": "yarn workspace audiomesh-desktop test",
"desktop:lint": "yarn workspace audiomesh-desktop lint",
"desktop:dist:mac": "yarn workspace audiomesh-desktop dist:mac",
"desktop:dist:win": "yarn workspace audiomesh-desktop dist:win",
"desktop:dist:linux": "yarn workspace audiomesh-desktop dist:linux",
"desktop:dist:all": "yarn workspace audiomesh-desktop dist:all",
"mobile:dev": "yarn workspace audiomesh-mobile run tauri dev",
"mobile:build": "yarn workspace audiomesh-mobile run build",
"mobile:android": "yarn workspace audiomesh-mobile run tauri android dev",
"mobile:android:build:debug": "yarn workspace audiomesh-mobile run android:build:debug",
"mobile:android:build:release": "yarn workspace audiomesh-mobile run android:build:release",
"mobile:ios": "yarn workspace audiomesh-mobile run tauri ios dev",
"mobile:ios:build": "yarn workspace audiomesh-mobile run tauri ios build",
"mobile:dist:android": "yarn workspace audiomesh-mobile run tauri android build --apk",
"mobile:dist:ios": "yarn workspace audiomesh-mobile run tauri ios build",
"mobile:dist:all": "yarn mobile:dist:android && yarn mobile:dist:ios",
"mobile:test": "yarn workspace audiomesh-mobile test",
"build:all": "yarn web:build && yarn desktop:build",
"dist:all": "yarn web:build && yarn desktop:dist:all && yarn mobile:dist:all",
"test:all": "node scripts/test-all.js",
"prettier:staged": "yarn workspace audiomesh-web run prettier:staged",
"lint:staged": "yarn workspace audiomesh-web run lint:staged",
"run-staged-tests": "./scripts/run-staged-tests.sh",
"run-pushed-files-tests": "./scripts/run-staged-tests.sh --pushed",
"prepare": "husky"
},
"packageManager": "yarn@4.14.1",
"devDependencies": {
"husky": "^9.0.11"
}
}