-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.51 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
41
42
43
44
45
46
47
48
49
50
51
{
"name": "watermarker-bot",
"version": "1.0.0",
"description": "A Telegram bot to add watermark on image",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"start:dev": "nodemon --watch src -e ts --exec npm run start",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogojagad/watermarker-bot.git"
},
"author": "Rogo Jagad Alit",
"license": "ISC",
"bugs": {
"url": "https://github.com/rogojagad/watermarker-bot/issues"
},
"homepage": "https://github.com/rogojagad/watermarker-bot#readme",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/node": "^16.4.13",
"@types/node-telegram-bot-api": "^0.56.0",
"@types/sharp": "^0.28.5",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.12",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"node-telegram-bot-api": "^0.56.0",
"sharp": "^0.28.3"
}
}