forked from fauzanfebrian/whatsapp-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.35 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
{
"name": "whatsapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"dev": "nodemon -i sessions --exec ts-node -r tsconfig-paths/register src/index.ts",
"start": "node ./dist/index.js",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migration:revert": "npm run typeorm -- migration:revert -d ./src/db/datasource.ts",
"migration:generate": "npm run typeorm -- migration:generate -d ./src/db/datasource.ts -p ./src/db/migrations/%npm_config_name%",
"migration:create": "npm run typeorm -- migration:create ./src/db/migrations/%npm_config_name%",
"migrate": "npm run typeorm -- migration:run -d ./src/db/datasource.ts",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky install || echo \"husky not installed\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/multer": "^1.4.11",
"@types/node": "^18.11.9",
"@types/qrcode": "^1.5.0",
"@types/qrcode-terminal": "^0.12.2",
"nodemon": "^3.0.2",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.7",
"husky": "^8.0.3"
},
"dependencies": {
"@whiskeysockets/baileys": "^6.5.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ffmpeg-static": "^5.2.0",
"joi": "^17.11.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.3",
"pino": "^8.16.2",
"qrcode": "^1.5.1",
"qrcode-terminal": "^0.12.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.17",
"typeorm-naming-strategies": "^4.1.0",
"wa-sticker-formatter": "^4.4.4"
}
}