-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
68 lines (68 loc) · 1.75 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
{
"name": "wpp-playground",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "tsup src",
"dev": "NODE_ENV=development tsx watch src/index.ts",
"start": "NODE_ENV=production node dist/index.js",
"env:example": "cp .env.example .env",
"run-db": "docker-compose up -d --build mongo",
"run-app": "docker-compose up -d --build app",
"run-docker": "docker-compose up -d --build",
"lint:staged": "lint-staged --no-stash",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"yarn prettier"
],
"*.yml": [
"prettier --write"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@axiomhq/js": "^1.0.0",
"@axiomhq/pino": "^1.0.0",
"@google-cloud/local-auth": "2.1.0",
"@types/express": "^4.17.21",
"@types/qrcode-terminal": "^0.12.0",
"dotenv-safe": "^8.2.0",
"elevenlabs": "^0.8.0",
"express": "^4.19.2",
"googleapis": "105",
"husky": "^9.0.11",
"i18n": "^0.15.1",
"image-to-base64": "^2.2.0",
"jimp": "^0.22.12",
"lint-staged": "^15.2.5",
"mongodb": "^6.7.0",
"mongoose": "^8.4.1",
"openai": "^4.47.3",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"prettier": "^3.3.2",
"qrcode-terminal": "^0.12.0",
"tsup": "^8.1.0",
"typescript": "^5.1.6",
"whatsapp-web.js": "^1.25.0",
"wwebjs-mongo": "^1.1.0",
"yt-get": "^1.1.2"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.78",
"@types/dotenv-safe": "^8.1.2",
"@types/i18n": "^0.13.6",
"@types/image-to-base64": "^2.1.2",
"@types/node": "^20.14.1",
"@types/uuid": "^9.0.8",
"chokidar": "^3.5.3",
"ts-node-dev": "^2.0.0",
"tsx": "^4.15.2"
}
}