-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.94 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.94 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
{
"name": "dotabod",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"cache:clean": "rm -rf $(echo bun pm cache) && rm -rf node_modules && rm bun.lock || true",
"up": "bun upgrade-interactive --latest",
"nps": "doppler run -- bash services/mongodb/updatenps.sh",
"exportnps": "doppler run -- bash services/mongodb/export.sh",
"just": "doppler run -- bash runner.sh",
"just-prod": "DOPPLER_CONFIG=prd doppler run -- bash runner.sh",
"build:all": "bun run --cwd packages/shared-utils build && bun run --cwd packages/profanity-filter build && bun run --cwd packages/dota build && bun run --cwd packages/twitch-chat build && bun run --cwd packages/twitch-events build",
"typecheck:all": "bun run --cwd packages/shared-utils typecheck && bun run --cwd packages/profanity-filter typecheck && bun run --cwd packages/dota typecheck && bun run --cwd packages/twitch-chat typecheck && bun run --cwd packages/twitch-events typecheck",
"lint:all": "biome check .",
"test:all": "bun run --cwd packages/profanity-filter test"
},
"trustedDependencies": [
"@biomejs/biome",
"es5-ext",
"esbuild",
"lefthook",
"protobufjs",
"steam-fork",
"steam-resources-fork"
],
"dependencies": {
"@supabase/supabase-js": "^2.47.10",
"@twurple/api": "7.2.1",
"@twurple/auth": "7.2.1",
"@twurple/eventsub-base": "^7.2.1",
"i18next": "^24.2.0",
"i18next-fs-backend": "^2.6.0",
"socket.io": "^4.8.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.10.2",
"lefthook": "^1.11.6",
"lint-staged": "^15.3.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8",
"@types/bun": "latest"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true"
]
}
}