-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.49 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
{
"name": "gmadrid-natacion-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch \"*.ts\" --exec \"ts-node\" ./src/apps/shell-cli/start.ts",
"start:bot:shell-cli": "NODE_ENV=prod node ./src/apps/shell-cli/start",
"build": "yarn build:clean && yarn build:tsc",
"build:tsc": "tsc -p tsconfig.json",
"build:clean": "rm -r dist; exit 0",
"prepare": "husky install",
"lint": "yarn eslint --ext .ts src && yarn prettier src -w"
},
"author": "Matteo Bertamini <[email protected]>",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@supabase/supabase-js": "^2.39.8",
"convict": "^6.2.4",
"firebase-admin": "^12.1.0",
"node-dependency-injection": "^3.1.2",
"qrcode-terminal": "^0.12.0",
"typescript": "^5.3.3",
"uuid": "^9.0.1",
"uuid-validate": "^0.0.3",
"whatsapp-web.js": "github:pedroslopez/whatsapp-web.js#webpack-exodus"
},
"overrides": {
"puppeteer": {
"puppeteer": "16.2.0"
}
},
"devDependencies": {
"@types/convict": "^6.1.6",
"@types/node": "^20.10.4",
"@types/qrcode-terminal": "^0.12.2",
"@types/uuid": "^9.0.7",
"@types/uuid-validate": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-node": "^10.9.2"
}
}