-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (44 loc) · 1.98 KB
/
package.json
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
{
"name": "streameth-platform",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/app",
"packages/server",
"packages/contracts",
"packages/video-uploader",
"packages/reel-creator"
]
},
"scripts": {
"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",
"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",
"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": {
"husky": "^9",
"lint-staged": "^15.2.7",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0.6.5"
}
}