-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 KB
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
{
"name": "whatsapp-api",
"version": "1.0.0",
"description": "",
"main": "dist/src/index.js",
"dependencies": {
"@types/qrcode": "^1.5.0",
"@types/qrcode-terminal": "^0.12.0",
"axios": "^1.7.7",
"command-line-args": "^5.2.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-context": "^1.1.0",
"express-validator": "^6.12.2",
"morgan": "^1.10.0",
"pretty-print-error": "^1.1.2",
"qrcode": "^1.4.4",
"qrcode-terminal": "^0.12.0",
"socket.io": "^4.2.0",
"true-di": "^3.0.0",
"ts-command-line-args": "^2.3.1",
"typescript-logger": "^5.0.1",
"whatsapp-web.js": "1.34.6",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.2",
"@types/node": "^20.2.5",
"@types/node-fetch": "^2.6.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-standard-with-typescript": "^27.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.9.3"
},
"scripts": {
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test-with-coverage": "jest test --coverage",
"test": "jest test --detectOpenHandles",
"test-watch": "jest test --watch --detectOpenHandles",
"dev": "nodemon src/index.ts",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"lint-fix": "eslint -c .eslintrc.js --ext .ts src/ --fix"
},
"author": "Gabriel Gonzalez @gajosu",
"license": "ISC"
}