-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.24 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
{
"name": "sonory-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/web",
"apps/api",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"fix": "turbo lint:fix format:fix",
"fix:check": "turbo lint format",
"fix:style": "turbo format:fix",
"fix:all": "turbo lint:fix format:fix",
"test": "turbo test",
"clean": "turbo clean",
"type-check": "turbo type-check",
"dev:web": "turbo dev --filter=@sonory/web",
"dev:api": "turbo dev --filter=@sonory/api",
"build:web": "turbo build --filter=@sonory/web",
"build:api": "turbo build --filter=@sonory/api",
"deploy:api": "turbo deploy --filter=@sonory/api",
"deploy:web": "turbo deploy --filter=@sonory/web",
"prepare": "lefthook install --reset-hooks-path",
"postinstall": "turbo build --filter=@sonory/shared-types --filter=@sonory/utils",
"setup": "npm install && npm run build",
"setup:env": "bash scripts/setup-env.sh",
"start:all": "npm run start:infra && concurrently \"npm run start:api\" \"npm run start:frontend\" --names \"api,web\" --prefix-colors \"blue,green\"",
"start:backend": "npm run start:infra && npm run start:api",
"start:infra": "docker compose up -d audio-analyzer redis",
"start:frontend": "cd apps/web && npm run dev",
"start:api": "cd apps/api && npm run dev",
"start:web:preview": "cd apps/web && npm run preview",
"stop:all": "docker compose down && pkill -f 'next|wrangler' || echo 'All services stopped'",
"win:setup": "cd apps/python-audio-analyzer && setup-windows.bat",
"win:debug": "cd apps/python-audio-analyzer && powershell -ExecutionPolicy Bypass -File debug-windows.ps1",
"win:start:all": "npm run start:all"
},
"dependencies": {
"@sonory/config": "*",
"@sonory/shared-types": "*",
"@sonory/utils": "*"
},
"devDependencies": {
"@types/node": "^24.13.3",
"concurrently": "^10.0.3",
"lefthook": "^2.1.10",
"oxfmt": "^0.60.0",
"oxlint": "^1.75.0",
"turbo": "^2.10.6",
"typescript": "^5.9.3"
},
"packageManager": "npm@10.9.4"
}