forked from Billos/Broadcastarr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.24 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "broadcastarr",
"version": "1.2.3",
"private": true,
"description": "",
"homepage": "https://github.com/Billos/Broadcastarr#readme",
"bugs": {
"url": "https://github.com/Billos/Broadcastarr/issues"
},
"repository": "[email protected]:Billos/Broadcastarr.git",
"license": "BSD-2-Clause",
"author": "Billos",
"main": "./src/server.ts",
"scripts": {
"bootstrap": "yarn start src/bootstrap.js",
"build": "tsc -p tsconfig.json",
"dev": "tsx watch --clear-screen",
"dev:bootstrap": "yarn dev src/bootstrap.ts",
"dev:server": "yarn dev src/server.ts",
"dev:worker": "sleep 1; yarn dev src/worker.ts",
"docker:build": "docker build . -t billos/broadcastarr:latest",
"format": "prettier . --write",
"format-check": "prettier . --check",
"lint": "eslint src",
"release": "semantic-release",
"server": "yarn start src/server.js",
"start": "tsx",
"type-check": "tsc --noEmit",
"worker": "sleep 1; yarn start src/worker.js"
},
"dependencies": {
"@hokify/agenda": "^6.3.0",
"axios": "^1.7.8",
"discord.js": "^14.16.3",
"express": "^4.18.2",
"express-http-proxy": "^2.1.1",
"luxon": "^3.3.0",
"matrix-js-sdk": "^34.4.0",
"mongoose": "^8.8.3",
"node-cache": "^5.1.2",
"puppeteer": "23.9.0",
"showdown": "^2.1.0",
"tslog": "^4.8.2",
"uuid": "^11.0.3"
},
"devDependencies": {
"@codedependant/semantic-release-docker": "^5.0.3",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin-js": "^2.11.0",
"@stylistic/eslint-plugin-ts": "^2.11.0",
"@types/express": "^4.17.17",
"@types/express-http-proxy": "^1.6.3",
"@types/luxon": "^3.3.0",
"@types/showdown": "^2.0.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"eslint": "^9.15.0",
"prettier": "^3.4.1",
"prettier-plugin-multiline-arrays": "^3.0.6",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"semantic-release": "^24.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}