-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
73 lines (73 loc) · 2.23 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
{
"name": "@wppconnect/server-cli",
"version": "1.3.11",
"description": "Servidor de WPPConnect com frontend para ser executado a partir de uma linha de comando",
"bin": {
"wppserver": "./bin/wppserver.js"
},
"main": "dist/index.js",
"author": "edgardmessias",
"license": "Apache-2.0",
"scripts": {
"build": "rimraf dist && babel src -s -D -d dist",
"changelog:last": "conventional-changelog -p angular -r 2",
"changelog:preview": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz",
"license:add": "license-check-and-add add",
"license:check": "license-check-and-add check",
"lint": "eslint --ext .js src",
"prepare": "husky install",
"release": "release-it",
"start": "cross-env RUN_SERVER=1 babel-node src",
"watch": "nodemon -w src --exec \"babel-node src\""
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@wppconnect/server": "^2.8.1",
"commander": "^12.1.0",
"merge-deep": "^3.0.3",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.717.0",
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/node": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@wppconnect/frontend": "^1.0.3",
"commitizen": "^4.3.1",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.1.7",
"license-check-and-add": "^4.0.5",
"mongoose": "^8.9.1",
"nodemon": "^3.1.9",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"redis": "^4.7.0",
"release-it": "^17.10.0",
"rimraf": "^5.0.10"
},
"peerDependencies": {
"aws-sdk": "^2.1692.0",
"crypto-js": "^4.2.0",
"mongoose": "^8.9.1",
"redis": "^4.7.0"
}
}