-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.51 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.51 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
{
"name": "42fm-server",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"common": "node --no-warnings --enable-source-maps --experimental-test-module-mocks --import @swc-node/register/esm-register",
"dev": "yarn common --watch --env-file=.env src/index.ts",
"dev:docker": "yarn common src/index.ts",
"start": "node ./dist/index.js",
"build": "yarn typecheck && yarn clean && swc src -d dist --strip-leading-paths",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --check ./src/**/*.ts",
"format:fix": "prettier ./src/**/*.ts",
"test": "yarn common --test test/**/*.test.ts",
"test:dev": "yarn common --test test/**/*.test.ts",
"migration:generate": "yarn build && typeorm-ts-node-esm migration:generate --pretty -d src/db/index.ts",
"migration:create": "yarn build && typeorm-ts-node-esm migration:create",
"migration:run": "yarn build && typeorm-ts-node-esm migration:run -d src/db/index.ts",
"migration:revert": "yarn build && typeorm-ts-node-esm migration:revert -d src/db/index.ts"
},
"dependencies": {
"@googleapis/youtube": "^30.3.0",
"@js-temporal/polyfill": "^0.5.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/tmi.js": "^1.8.6",
"axios": "^1.13.5",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"ioredis": "^5.9.3",
"pg": "^8.18.0",
"reflect-metadata": "^0.2.2",
"socket.io": "^4.8.3",
"tmi.js": "^1.8.5",
"typeorm": "^0.3.28",
"typescript": "^5.9.3",
"winston": "^3.19.0",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@swc-node/register": "^1.11.1",
"@swc/cli": "^0.7.10",
"@swc/core": "^1.15.11",
"@types/ioredis-mock": "^8.2.6",
"@types/node": "^25.3.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"eslint": "^9.39.2",
"globals": "^17.3.0",
"ioredis-mock": "^8.13.1",
"prettier": "3.8.1",
"socket.io-client": "^4.8.3",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.56.0",
"why-is-node-running": "^3.2.2",
"ws": "^8.19.0"
},
"imports": {
"#tmi": {
"node": "tmi.js",
"default": "./node_modules/tmi.js/index.js"
}
},
"packageManager": "yarn@4.6.0"
}