-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
{
"name": "nodeliad-ts",
"version": "1.0.0",
"description": "",
"main": "dist/bot.js",
"scripts": {
"build": "tsc --build --clean && tsc",
"start": "node dist/bot.js",
"dev": "nodemon src/bot.ts",
"lint": "eslint . --ext .ts,.tsx"
},
"author": "Domenico Majorana",
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^0.22.16",
"@types/cron": "^1.7.1",
"@types/dotenv": "^8.2.0",
"@types/moment": "^2.13.0",
"@types/node": "^13.7.4",
"@types/node-cron": "^2.0.3",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.45",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"moment": "^2.24.0",
"node-cron": "^2.0.3",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"telegraf": "^3.36.0"
}
}