-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.91 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "nodemon dist/server.js",
"dev:server": "ts-node-dev --respawn --transpile-only --ignore node_modules src/server.ts",
"db:migrate": "npx sequelize db:migrate",
"db:seed": "sequelize db:seed:all",
"pretest": "NODE_ENV=test sequelize db:migrate && NODE_ENV=test sequelize db:seed:all",
"test": "NODE_ENV=test jest",
"posttest": "NODE_ENV=test sequelize db:migrate:undo:all",
"lint": "eslint src/**/*.ts"
},
"author": "",
"license": "MIT",
"dependencies": {
"@whiskeysockets/baileys": "github:WhiskeySockets/Baileys",
"@adiwajshing/keyed-db": "^0.2.4",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@hapi/boom": "^9.1.4",
"@sentry/node": "^6.18.1",
"bcryptjs": "^2.4.3",
"bull": "^4.8.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cron": "^2.1.0",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"fluent-ffmpeg": "^2.1.2",
"gn-api-sdk-typescript": "^1.0.7",
"http-graceful-shutdown": "^3.1.6",
"jsonwebtoken": "^8.5.1",
"microsoft-cognitiveservices-speech-sdk": "1.31.0",
"multer": "^1.4.4",
"mustache": "^4.2.0",
"mysql2": "^2.2.5",
"node-cache": "^5.1.2",
"node-cron": "^3.0.2",
"nodemailer": "^6.8.0",
"openai": "3.3.0",
"pg": "^8.7.3",
"pino": "^7.8.0",
"pino-pretty": "^10.0.0",
"puppeteer": "^19.4.0",
"qrcode-terminal": "^0.12.0",
"reflect-metadata": "^0.1.13",
"request": "2.88.2",
"sequelize": "^5.22.3",
"sequelize-cli": "^5.5.1",
"sequelize-typescript": "^1.1.0",
"socket.io": "^3.0.5",
"uuid": "^8.3.2",
"xlsx": "^0.18.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.36",
"@types/chance": "^1.1.3",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/factory-girl": "^5.0.8",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/mustache": "^4.1.2",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.7.1",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"chance": "^1.1.8",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"factory-girl": "^5.0.4",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
}
}