-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 964 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 964 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
34
35
36
37
38
39
40
41
{
"name": "agentpay-backend",
"version": "1.0.0",
"description": "AgentPay API gateway, metering, and billing backend",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "npm run build && NODE_ENV=test node --test 'dist/**/*.test.js'",
"lint": "eslint .",
"format": "prettier --check ."
},
"keywords": [
"agentpay",
"stellar",
"api",
"billing"
],
"author": "",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.18"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/supertest": "^7.2.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.4",
"supertest": "^6.3.4",
"typescript": "^5.3.0",
"typescript-eslint": "^8.61.1"
},
"dependencies": {
"express": "^4.18.2"
}
}