forked from clairton/unoapi-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.62 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
{
"name": "unoapi-cloud",
"version": "1.15.27",
"description": "Unoapi Cloud",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"repository": "github.com/clairton/unoapi-cloud",
"author": "Clairton Rodrig Heinzen<clairton.rodrigo@gmail.com>",
"license": "GPL-3.0",
"private": false,
"scripts": {
"lint": "eslint src",
"test": "jest --coverage",
"build": "./node_modules/typescript/bin/tsc -p .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"dev": "./node_modules/nodemon/bin/nodemon.js src/index.ts",
"web-dev": "./node_modules/nodemon/bin/nodemon.js src/web.ts",
"worker-dev": "./node_modules/nodemon/bin/nodemon.js src/worker.ts",
"cloud-dev": "./node_modules/nodemon/bin/nodemon.js src/cloud.ts",
"start-ts": "node --loader ts-node/esm src/index.ts",
"start": "node dist/src/index.js",
"cloud": "node dist/src/cloud.js",
"web": "node dist/src/web.js",
"worker": "node dist/src/worker.js",
"clean:data": "rm -rf ./data/medias/* ./data/sessions/* ./data/stores/*.json"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.14.1",
"@types/node-fetch": "2",
"@types/qrcode": "^1.5.0",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@types/vcf": "^2.0.3",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.3",
"jest-fetch-mock": "^3.0.3",
"jest-mock-extended": "^3.0.3",
"nodemon": "^2.0.20",
"pino-pretty": "^9.4.0",
"prettier": "^2.8.4",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.341.0",
"@aws-sdk/s3-request-presigner": "^3.341.0",
"@google-cloud/text-to-speech": "^4.2.2",
"@redis/client": "^1.5.6",
"@whiskeysockets/baileys": "^6.6.0",
"amqplib": "^0.10.3",
"awesome-phonenumber": "^6.2.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jimp": "^0.22.10",
"jschardet": "^3.0.0",
"link-preview-js": "^3.0.4",
"mime-types": "^2.1.35",
"node-cache": "^5.1.2",
"node-fetch": "2",
"node-xlsx": "^0.23.0",
"pino": "^8.14.1",
"qrcode": "^1.5.1",
"qrcode-terminal": "^0.12.0",
"socks-proxy-agent": "^8.0.2",
"uuid": "^9.0.0",
"vcf": "^2.1.1",
"xlsx": "^0.18.5",
"yaml": "^2.2.1"
}
}