-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "video_dating_bot",
"description": "Telegram bot",
"version": "1.0.0",
"main": "dist/bin/bot.js",
"license": "MIT",
"author": {
"name": "bondiano",
"email": "batbondik0@gmail.com"
},
"engines": {
"node": "16.14.2"
},
"scripts": {
"prebuild": "rimraf dist",
"postinstall": "prisma generate",
"db:push": "prisma db push --accept-data-loss",
"db:migrate": "prisma migrate dev",
"dev": "nodemon -e ts -x ts-node src/bin/bot.ts",
"start": "node dist/bin/bot.js",
"build": "tsc"
},
"dependencies": {
"@prisma/client": "3.14.0",
"@sentry/node": "7.0.0",
"@sentry/tracing": "7.0.0",
"@sentry/types": "7.0.0",
"dotenv": "^16.0.1",
"fastify": "^3.29.0",
"fastify-plugin": "^3.0.1",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"pg": "8.7.3",
"pg-promise": "10.11.1",
"prisma": "3.14.0",
"telegraf": "4.8.3",
"telegraf-i18n": "6.6.0"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"nodemon": "^2.0.16",
"pino-pretty": "^7.6.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-node": "^10.8.0",
"typegram": "^3.9.1",
"typescript": "4.7.2"
}
}