-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
59
60
61
62
{
"private": true,
"license": "MPL-2.0",
"scripts": {
"build": "wireit",
"heroku-build": "wireit",
"heroku-cleanup": "wireit",
"heroku-start": "wireit",
"start": "wireit",
"test": "wireit"
},
"dependencies": {
"wireit": "0.14.9"
},
"devDependencies": {
"@wsh-2025/configs": "workspace:*"
},
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387",
"engines": {
"node": "22.14.0"
},
"pnpm": {
"overrides": {
"es-abstract": "~1.23.9",
"m3u8-parser>@babel/runtime": "-"
},
"patchedDependencies": {
"shaka-player": "patches/shaka-player.patch"
}
},
"wireit": {
"start": {
"dependencies": [
"./workspaces/server:start"
]
},
"build": {
"dependencies": [
"./workspaces/client:build"
]
},
"heroku-build": {
"dependencies": [
"build"
]
},
"heroku-cleanup": {
"//": "Heroku の buildpacks サイズ削減のため、サーバー起動に必要ないものを削除します",
"command": "rm -rf ./node_modules ./workspaces/*/.wireit ./workspaces/test && pnpm install --prod"
},
"heroku-start": {
"dependencies": [
"./workspaces/server:heroku-start"
]
},
"test": {
"dependencies": [
"./workspaces/test:test"
]
}
}
}