-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 904 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 904 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
{
"name": "trustscore",
"version": "1.0.0",
"description": "Fraud detection and reputation scoring tool for x402 agent payments",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"setup": "node scripts/setup-db.js",
"seed": "node scripts/seed-diverse-data.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"x402",
"fraud-detection",
"reputation",
"ai-agents"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"ethers": "^6.9.0",
"sqlite3": "^5.1.6",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3",
"axios": "^1.6.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0",
"supertest": "^6.3.3"
}
}