-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nsfw-heroku-tg-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"dependencies": {
"@stanislavkarol/delay": "^1.0.3",
"@stanislavkarol/get-bash-im-rss": "^1.1.21",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-async-handler": "^1.2.0",
"express-validator": "^6.14.0",
"fluent-ffmpeg": "^2.1.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.3.0",
"mongoose": "^6.1.5",
"node-fetch": "^2.6.1",
"node-html-parser": "^5.2.0",
"node-telegram-bot-api": "^0.56.0",
"probe-image-size": "^7.2.2",
"snoowrap": "^1.23.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/jsonwebtoken": "^8.5.6",
"@types/mocha": "^9.0.0",
"@types/mongoose": "^5.11.96",
"@types/node": "^17.0.8",
"@types/node-fetch": "^2.5.10",
"@types/node-telegram-bot-api": "^0.53.5",
"@types/probe-image-size": "^7.0.1",
"cross-env": "^7.0.3",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon -r dotenv/config --watch 'src/**/*.ts' --exec 'ts-node --files' src/index.ts",
"start": "node dist/index.js",
"deploy": "git push heroku master",
"heroku-prebuild": "cd client/ && npm install && npm run build",
"build": "tsc",
"postinstall": "npm run build",
"test": "mocha",
"test:manual": "cross-env NODE_ENV=development nodemon -r dotenv/config --watch 'src/**/*.ts' --exec 'ts-node --files' src/test/manual/reddit2.ts"
},
"keywords": [
"telegram",
"bot",
"node",
"express",
"react",
"mobx",
"typescript",
"nsfw"
],
"author": "Stanislav Karol",
"license": "ISC"
}