-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"author": "HerHde",
"description": "Rocket.Chat to Matrix migration script",
"license": "AGPL-3.0-or-later",
"main": "dist/app.js",
"name": "rocketchat2matrix",
"repository": {
"type": "git",
"url": "https://git.verdigado.com/NB-Public/rocketchat2matrix"
},
"engines": {
"node": ">=19.0.0"
},
"lint-staged": {
"**/*.ts": [
"prettier --check",
"eslint --max-warnings 0"
]
},
"scripts": {
"format": "prettier . --check --ignore-unknown",
"format-fix": "prettier . --write --ignore-unknown",
"lint": "eslint --max-warnings 0",
"lint-fix": "eslint --fix",
"prefix": "npm run format-fix",
"fix": "npm run lint-fix",
"test": "rm -rf dist/ && jest",
"compile": "rm -rf dist/ && tsc",
"start": "npm run compile && node dist/app.js",
"prepare": "husky"
},
"version": "0.1.0",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/n-readlines": "^1.0.6",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.10",
"@typescript-eslint/parser": "^8.0.0-alpha.10",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.0.0",
"husky": "^9.1.2",
"lint-staged": "^15.2.7",
"node-jq": "^6.0.1",
"prettier": "3.3.3",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/showdown": "^2.0.6",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"n-readlines": "^1.0.1",
"node-emoji": "^2.1.3",
"reflect-metadata": "^0.2.2",
"showdown": "^2.1.0",
"sqlite3": "^5.1.7",
"typeorm": "^0.3.20",
"winston": "^3.13.1"
}
}