forked from geluk/matrix-webhook-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "webhook-gateway",
"version": "0.0.0",
"description": "Matrix.org webhook appservice",
"private": true,
"scripts": {
"start": "ts-node entry.ts -v",
"build": "ttsc",
"dist": "scripts/dist.sh",
"lint": "eslint . --ext .ts",
"test": "jest",
"all": "npm run build && npm run lint && npm run test"
},
"author": "",
"license": "MIT",
"dependencies": {
"@vscode/sqlite3": "^5.0.7",
"express": "^4.17.2",
"hasha": "^5.2.2",
"html-entities": "^2.3.2",
"is-my-json-valid": "^2.20.6",
"js-yaml": "^4.1.0",
"knex": "^1.0.3",
"matrix-appservice-bridge": "^3.2.0",
"mime": "^3.0.0",
"mustache": "^4.2.0",
"mysql": "^2.18.1",
"node-emoji": "^1.11.0",
"node-fetch": "^2.6.6",
"node-html-parser": "^5.1.0",
"node-watch": "^0.7.2",
"oracledb": "^5.3.0",
"pg": "^8.7.1",
"tedious": "^14.3.0",
"tslog": "^3.3.0",
"ttypescript": "^1.5.13",
"typescript": "^4.6.2",
"typescript-is": "^0.19.0",
"yargs": "^17.2.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/express": "^4.17.11",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/mime": "^2.0.3",
"@types/mustache": "^4.1.1",
"@types/node-emoji": "^1.8.1",
"@types/node-fetch": "^2.5.8",
"@types/yargs": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"prettier": "^2.3.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0"
}
}