-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 834 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 834 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
32
33
{
"name": "makepay-quickbooks",
"version": "0.1.0",
"description": "QuickBooks Online connector for MakePay invoice payment links and payment reconciliation.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"scan": "node scripts/scan.mjs",
"validate": "npm run build && npm test && npm run scan"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"dotenv": "17.2.3",
"express": "5.2.1",
"zod": "4.4.3"
},
"devDependencies": {
"@types/express": "5.0.6",
"@types/node": "25.9.1",
"@types/supertest": "7.2.0",
"supertest": "7.2.2",
"tsx": "4.22.3",
"typescript": "6.0.3",
"vitest": "4.1.7"
}
}