forked from TediCross/TediCross
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "tedicross",
"version": "0.11.2",
"description": "Bridging Telegram and Discord",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TediCross/TediCross.git"
},
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"start": "node dist/main.js",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/main.ts -i data/",
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist/"
},
"dependencies": {
"@types/js-yaml": "^4.0.5",
"@types/mime": "^2.0.3",
"@types/ramda": "^0.27.64",
"@types/semver": "^7.3.9",
"@types/yargs": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"discord.js": "^14.3.0",
"js-yaml": "^4.1.0",
"mime": "^3.0.0",
"moment": "^2.29.1",
"ramda": "^0.27.1",
"semver": "^7.3.5",
"simple-markdown": "^0.7.3",
"telegraf": "^4.7.0",
"typescript": "^4.5.5",
"yargs": "^17.3.0",
"sqlite3": "^5.0.11",
"sqlite": "^4.1.2"
},
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0"
}
}