-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 KB
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
{
"name": "super-bot",
"version": "3.0.0",
"author": "TheresaQWQ",
"license": "Apache-2.0",
"dependencies": {
"@types/express": "^4.17.11",
"@types/mysql": "^2.15.18",
"@types/node": "^14.14.37",
"@types/node-telegram-bot-api": "^0.51.1",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.1",
"body-parser": "^1.19.0",
"canvas": "^2.7.0",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"got": "^11.8.2",
"log4js": "^6.3.0",
"mysql": "^2.18.1",
"node-cache": "^5.1.2",
"paster.js": "^1.0.0",
"randomcolor": "^0.6.2",
"rss-parser": "^3.12.0",
"segment": "^0.1.3",
"sha1": "^1.1.1",
"telegraf": "^4.3.0",
"typescript": "^4.2.3",
"uuid": "^8.3.2",
"whoiser": "^1.10.0",
"ws": "^7.4.4"
},
"scripts": {
"start": "cross-env NODE_ENV=prod node ./dist/app.js",
"build": "node ./tools/before-build.js && tsc && node ./tools/after-build.js",
"dev": "cross-env NODE_ENV=dev ts-node ./app.ts",
"lint": "eslint --ext .ts ."
},
"devDependencies": {
"@types/randomcolor": "^0.5.5",
"@types/sha1": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1"
}
}