-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.34 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
{
"name": "portrait-mate",
"version": "1.0.0",
"description": "Street/portrait photography workflow for shooting strangers and instantly sending them their photos via WhatsApp",
"module": "src/server.ts",
"type": "module",
"private": true,
"scripts": {
"dev": "bun scripts/dev.ts",
"start": "bun src/server.ts",
"compile": "bun build --compile src/server.ts --outfile portrait-mate",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.{ts,js,json}\""
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"@types/qrcode-terminal": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"@types/qrcode": "^1.5.6",
"@types/sharp": "^0.32.0",
"@whiskeysockets/baileys": "7.0.0-rc.6",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"qrcode": "^1.5.4",
"qrcode-terminal": "^0.12.0",
"sharp": "^0.34.5",
"socket.io": "^4.8.1",
"zod": "^4.1.12"
}
}