-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.55 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.55 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "digittron",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"sqlite3"
]
},
"scripts": {
"api": "tsx watch --env-file=.env src/api/index.ts",
"bot": "tsx watch --env-file=.env src/bot/index.ts",
"build": "vite build && tsc -p tsconfig.json && tsc-alias",
"dev": "concurrently -c magenta,#7700cf -n API,WEB,BOT \"pnpm:api\" \"vite\" \"pnpm:bot\"",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"mikro-orm": "mikro-orm-esm",
"seed": "mikro-orm-esm seeder:run",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.26.2",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/sse": "^0.4.0",
"@fastify/static": "^9.0.0",
"@lmstudio/sdk": "^1.5.0",
"@mikro-orm/core": "^6.6.2",
"@mikro-orm/migrations": "^6.6.2",
"@mikro-orm/reflection": "^6.6.2",
"@mikro-orm/seeder": "^6.6.5",
"@mikro-orm/sqlite": "^6.6.2",
"pino-pretty": "^13.1.3",
"@spotify/web-api-ts-sdk": "^1.2.0",
"@twurple/api": "^8.0.2",
"@twurple/auth": "^8.0.2",
"@twurple/chat": "^8.0.2",
"@twurple/eventsub-base": "^8.0.2",
"@twurple/eventsub-http": "^8.0.2",
"@twurple/eventsub-ngrok": "^8.0.2",
"@twurple/eventsub-ws": "^8.0.2",
"fastify": "^5.6.2",
"linkifyjs": "^4.3.2",
"pino": "^10.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"redis": "^5.10.0",
"redis-errors": "^1.2.0"
},
"devDependencies": {
"@mikro-orm/cli": "^6.6.5",
"@types/linkifyjs": "^2.1.7",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"@vitejs/plugin-react": "^5.1.2",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"igdb-api-node": "^6.0.5",
"prettier": "3.7.4",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vite": "^7.3.0"
}
}