This repository was archived by the owner on Feb 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.46 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
{
"name": "streameth-platform",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
},
"workspaces": {
"packages": [
"packages/app",
"packages/server",
"packages/contracts",
"packages/video-uploader",
"packages/reel-creator"
]
},
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:app\"",
"dev:backend": "docker compose --env-file .env -f docker-compose-dev.yml up",
"dev:app": "yarn workspace @streameth/streameth-app dev",
"build:app": "yarn workspace @streameth/streameth-app build",
"start:app": "yarn workspace @streameth/streameth-app start",
"dev:server": "yarn workspace streameth-new-server dev:server",
"build:server": "yarn workspace streameth-new-server build",
"start:server": "yarn workspace streameth-new-server start:server",
"dev:reel-creator": "yarn workspace streameth-reel-creator dev",
"build:reel-creator": "yarn workspace streameth-reel-creator build",
"start:reel-creator": "yarn workspace streameth-reel-creator start",
"dev:stage-transcriptions": "yarn workspace streameth-new-server dev:stage-transcriptions",
"dev:session-transcriptions": "yarn workspace streameth-new-server dev:session-transcriptions",
"dev:clips": "yarn workspace streameth-new-server dev:clips",
"dev:video-importer": "yarn workspace streameth-new-server dev:video-importer",
"start:stage-transcriptions": "yarn workspace streameth-new-server start:stage-transcriptions",
"start:session-transcriptions": "yarn workspace streameth-new-server start:session-transcriptions",
"start:clips": "yarn workspace streameth-new-server start:clips",
"start:video-importer": "yarn workspace streameth-new-server start:video-importer",
"next:lint": "yarn workspace @streameth/streameth-app lint",
"next:check-types": "yarn workspace @streameth/streameth-app check-types",
"prettier:fix": "yarn workspace @streameth/streameth-app prettier:fix && yarn workspace streameth-new-server prettier:fix",
"prettier:check": "yarn workspace @streameth/streameth-app prettier:check && yarn workspace streameth-new-server prettier:check",
"precommit": "lint-staged --verbose",
"install:all": "yarn --cwd packages/server && yarn",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^9.2.1",
"husky": "^9",
"lint-staged": "^15.2.7",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}