-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 2.04 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
{
"name": "conference-bot",
"version": "0.1.0",
"description": "Manages online virtual events",
"main": "lib/index.js",
"repository": "[email protected]:matrix-org/conference-bot.git",
"author": "The Matrix.org Foundation C.I.C.",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"private": true,
"scripts": {
"start:bot": "yarn build:jsonschema && yarn build:ts && node --enable-source-maps lib/index.js",
"start:web": "webpack serve",
"watch:web": "webpack --watch",
"build": "yarn build:jsonschema && yarn build:ts && yarn build:web",
"build:jsonschema": "json2ts -i src/backends/json/jsonschemas/ -o src/backends/json/jsontypes/",
"build:ts": "tsc",
"build:web": "webpack",
"run:merge-roles": "yarn build && node lib/scripts/merge-roles.js",
"test": "jest src/__tests__",
"test:e2e": "jest spec/"
},
"dependencies": {
"@tsconfig/node18": "^18.2.2",
"await-lock": "^2.1.0",
"config": "^3.3.3",
"express": "^4.17.1",
"fast-xml-parser": "^4.3.2",
"hls.js": "^1.5.3",
"irc-upd": "^0.11.0",
"js-yaml": "^3.14.1",
"jsrsasign": "^10.1.4",
"liquidjs": "^9.19.0",
"matrix-bot-sdk": "npm:@vector-im/matrix-bot-sdk@^0.6.7-element.1",
"matrix-widget-api": "^1.6.0",
"moment": "^2.29.4",
"node-fetch": "^2.6.1",
"pg": "^8.9.0",
"postcss-preset-env": "^6.7.0",
"prom-client": "^15.0.0",
"qs": "^6.11.2",
"rfc4648": "^1.4.0",
"xss": "^1.0.14"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18",
"@types/pg": "^7.14.7",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"homerunner-client": "^0.0.6",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.3.1",
"json-schema-to-typescript": "^11.0.2",
"sass": "^1.69.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"yaml": "^2.3.2"
}
}