-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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
{
"name": "instatele",
"version": "1.0.0",
"description": "Telegram bot to send random Instagram post",
"main": "build/main.js",
"repository": "[email protected]:kitce/instatele.git",
"author": "kitce <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=14.17.0",
"yarn": ">=1.22.0"
},
"scripts": {
"dev": "ts-node --files src/main.ts",
"lint": "eslint src/*.ts",
"prebuild": "rm -rf build",
"build": "tsc",
"start": "node build/main.js"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.157",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.8.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"get-emails": "^3.0.0",
"got": "^10.0.0",
"lodash": "^4.17.21",
"telegraf": "^4.4.2"
}
}