-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "dotabod",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"cache:clean": "rm -rf $(echo bun pm cache) && rm -rf node_modules && rm bun.lockb || 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"
},
"trustedDependencies": [
"steam-resources-fork",
"steam-fork"
],
"dependencies": {
"@supabase/supabase-js": "^2.45.4",
"@twurple/api": "6.0.9",
"@twurple/auth": "6.0.9",
"@twurple/chat": "6.0.9",
"@twurple/eventsub-base": "^7.1.0",
"i18next": "^23.15.1",
"i18next-fs-backend": "^2.3.2",
"socket.io": "^4.8.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/node": "^20.16.5",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true"
]
}
}