-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.75 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
{
"name": "webhook-gateway",
"version": "0.0.0",
"description": "Matrix.org webhook appservice",
"private": true,
"scripts": {
"start": "ts-node entry.ts -v",
"build": "tsc",
"dist": "scripts/dist.sh",
"lint": "eslint . --ext .ts",
"test": "jest",
"all": "npm run build && npm run lint && npm run test",
"postinstall": "ts-patch install"
},
"author": "",
"license": "MIT",
"dependencies": {
"@vscode/sqlite3": "^5.1.6-vscode",
"express": "^4.18.2",
"hasha": "^5.2.2",
"html-entities": "^2.4.0",
"is-my-json-valid": "^2.20.6",
"js-yaml": "^4.1.0",
"knex": "^1.0.3",
"matrix-appservice-bridge": "^9.0.1",
"mime": "^3.0.0",
"mustache": "^4.2.0",
"mysql": "^2.18.1",
"node-emoji": "^1.11.0",
"node-fetch": "^2.7.0",
"node-html-parser": "^6.1.6",
"node-watch": "^0.7.4",
"oracledb": "^6.0.3",
"pg": "^8.11.3",
"tedious": "^16.4.0",
"tslog": "^3.3.0",
"typescript": "^5.1.6",
"typia": "^4.2.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/js-yaml": "^4.0.5",
"@types/mime": "^3.0.1",
"@types/mustache": "^4.2.2",
"@types/node-emoji": "^1.8.1",
"@types/node-fetch": "^2.6.4",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.6.2",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-patch": "^3.0.2"
}
}