-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "whatsapp_web_client_service",
"version": "1.0.0",
"description": "A wrapper service for whatsapp_js library",
"main": "src/index.js",
"scripts": {
"build": "npx tsc",
"start": "ts-node src/index.ts",
"dev": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'ts-node src/index.ts'",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"author": "DeVArKaDiA",
"license": "ISC",
"dependencies": {
"class-validator": "^0.14.0",
"dataclass": "^2.1.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"qrcode": "^1.5.3",
"whatsapp-web.js": "^1.22.2-alpha.3"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.1",
"@types/qrcode": "^1.5.1",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"concurrently": "^8.2.0",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}