forked from vrumger/ChannelHashBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 880 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 880 Bytes
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
{
"name": "channelhashbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"dev": "ts-node src/index.ts",
"build": "tsc",
"test": "tsc --noEmit",
"lint": "eslint src/"
},
"author": "YouTwitFace <contact@lungers.com>",
"license": "MIT",
"dependencies": {
"@types/mongoose": "^5.7.36",
"@youtwitface/escape-html": "^1.0.0",
"@youtwitface/text-to-html": "^1.1.3",
"dotenv": "^8.2.0",
"mongoose": "^5.9.28",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"telegraf": "^3.38.0"
},
"devDependencies": {
"@types/node": "^14.0.13",
"@types/request-promise": "^4.1.46",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
}
}