-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 873 Bytes
/
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
{
"name": "instaglance-bot",
"version": "1.0.0",
"description": "Simple telegram bot to scrape photos from instagram",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "export NODE_ENV=production && npm run build && node ./dist/index.js",
"devstart": "export DEBUG='grammy*' && nodemon ./src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"socks-proxy-agent": "^8.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@grammyjs/types": "^3.5.2",
"@types/dotenv": "^8.2.0",
"@types/node": "^20.11.19",
"dotenv": "^16.4.1",
"grammy": "^1.20.4",
"pg": "^8.11.3",
"puppeteer": "^22.6.0"
}
}