generated from dvdksn/clockbox
-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
91 lines (91 loc) · 3.01 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
{
"name": "unoapi-cloud",
"version": "1.21.1",
"description": "Unoapi Cloud",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"repository": "github.com/clairton/unoapi-cloud",
"author": "Clairton Rodrigo Heinzen<[email protected]>",
"license": "GPL-3.0",
"private": false,
"scripts": {
"lint": "eslint",
"test": "node_modules/jest/bin/jest.js --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 --trace-deprecation",
"web-dev": "./node_modules/nodemon/bin/nodemon.js src/web.ts",
"worker-dev": "./node_modules/nodemon/bin/nodemon.js src/worker.ts",
"broker-dev": "./node_modules/nodemon/bin/nodemon.js src/broker.ts",
"bridge-dev": "./node_modules/nodemon/bin/nodemon.js src/bridge.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",
"broker": "node dist/src/broker.js",
"bridge": "node dist/src/bridge.js",
"clean:data": "rm -rf ./data/medias/* ./data/sessions/* ./data/stores/*.json"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/mime-types": "^2.1.4",
"@types/node": "^20.12.7",
"@types/node-fetch": "2",
"@types/qrcode": "^1.5.5",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"@types/vcf": "^2.0.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock-extended": "^3.0.6",
"nodemon": "^3.1.0",
"pino-pretty": "^7.0.0",
"prettier": "^3.2.5",
"supertest": "^7.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.598.0",
"@aws-sdk/s3-request-presigner": "^3.598.0",
"@google-cloud/text-to-speech": "^5.2.0",
"@redis/client": "^1.5.14",
"@whiskeysockets/baileys": "^6.7.9",
"amqplib": "^0.10.4",
"awesome-phonenumber": "^6.8.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jimp": "^0.22.12",
"jschardet": "^3.1.2",
"link-preview-js": "^3.0.5",
"mime-types": "^2.1.35",
"node-cache": "^5.1.2",
"node-fetch": "^2.7.0",
"node-xlsx": "^0.24.0",
"pino": "^7.0.0",
"qrcode": "^1.5.3",
"qrcode-terminal": "^0.12.0",
"socket.io": "^4.7.5",
"socks-proxy-agent": "^8.0.3",
"uuid": "^9.0.1",
"vcf": "^2.1.2",
"voice-calls-baileys": "^1.0.5",
"xlsx": "^0.18.5",
"yaml": "^2.4.2"
}
}