-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
45
46
47
{
"name": "featured-channels-bridge",
"version": "1.0.0",
"homepage": "https://github.com/esamarathon/featured-channels-bridge#readme",
"bugs": {
"url": "https://github.com/esamarathon/featured-channels-bridge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esamarathon/featured-channels-bridge.git"
},
"license": "MIT",
"author": "zoton2",
"main": "dist/index.js",
"scripts": {
"autofix": "eslint --fix --ext .ts,.d.ts src",
"build": "tsc -b tsconfig.json",
"docker": "docker build --pull --rm -f \"Dockerfile\" -t ghcr.io/esamarathon/featured-channels-bridge:latest \".\"",
"start": "node ./dist/index.js",
"watch": "tsc -b tsconfig.json -w"
},
"dependencies": {
"body-parser": "^1.19.2",
"express": "^4.17.3",
"fs-extra": "^10.0.1",
"lodash": "^4.17.21",
"needle": "^3.0.0",
"twitch-js": "^2.0.0-beta.43",
"ws": "^8.5.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.178",
"@types/needle": "^2.5.3",
"@types/node": "^16.11.25",
"@types/ws": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"typescript": "^4.5.5"
}
}