-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 790 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 790 Bytes
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
{
"name": "max-bot-users",
"version": "1.0.0",
"description": "Max messenger bot for end users (B24 lead capture)",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "tsx src/main.ts",
"start:prod": "node dist/main.js",
"dev": "tsx src/main.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@maxhub/max-bot-api": "^0.2.2",
"axios": "^1.7.0",
"better-sqlite3": "^12.10.0",
"dotenv": "^16.4.0",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^20.11.0",
"@vitest/coverage-v8": "^2.1.8",
"nock": "^13.5.6",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"vitest": "^2.1.8"
}
}