-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "broadcaster",
"type": "module",
"version": "1.0.7",
"description": "Service to broadcast notifications over websockets for canvas game factions that use TemplateManager",
"main": "dist/main.js",
"repository": "https://github.com/april83c/broadcaster",
"author": "April <april@dummy.cafe>",
"license": "AGPL-3.0-or-later",
"packageManager": "yarn@3.5.0",
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.10",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-ws": "^5.0.2",
"node-json-db": "^2.1.5",
"oauth": "^0.10.0",
"passport": "^0.6.0",
"passport-oauth2": "^1.7.0",
"passport-reddit": "^1.1.0",
"url": "^0.11.0",
"ws": "^8.17.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/express-ws": "^3.0.1",
"@types/node": "^18.15.11",
"@types/oauth": "^0.9.1",
"@types/passport": "^1.0.12",
"@types/passport-oauth2": "^1.4.12",
"@types/ws": "^8.5.4",
"typescript": "^5.0.3"
},
"scripts": {
"build": "tsc",
"start": "node ."
}
}