-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.97 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "evid-dgc",
"version": "2.0.0",
"description": "Secure blockchain evidence management system with admin controls",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"setup": "node contributor-setup.js",
"contributor-setup": "node contributor-setup.js --contributor",
"health": "curl http://localhost:10000/api/health || echo 'Server not running'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest --forceExit --detectOpenHandles",
"test:integration": "node tests/integration-test.js",
"build": "echo 'Build not required for this project'",
"compile": "npx hardhat compile",
"deploy:amoy": "npx hardhat run scripts/deploy-verified.js --network polygonAmoy",
"deploy:polygon": "npx hardhat run scripts/deploy-verified.js --network polygon",
"verify:contract": "npx hardhat verify --network polygonAmoy",
"blockchain:status": "curl http://localhost:10000/api/blockchain/status",
"blockchain:health": "curl http://localhost:10000/api/blockchain/health",
"migrate:blockchain": "node scripts/migrate-to-blockchain.js"
},
"keywords": [
"blockchain",
"evidence",
"admin",
"security",
"supabase",
"forensics",
"c2pa",
"deepfake-detection",
"rbac",
"abac"
],
"author": "EVID-DGC Team",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Gooichand/blockchain-evidence.git"
},
"homepage": "https://github.com/Gooichand/blockchain-evidence#readme",
"bugs": {
"url": "https://github.com/Gooichand/blockchain-evidence/issues"
},
"dependencies": {
"@supabase/supabase-js": "^2.39.0",
"archiver": "^6.0.1",
"axios": "^1.6.0",
"bcryptjs": "^3.0.3",
"bull": "^4.12.2",
"color-hash": "^2.0.2",
"cors": "^2.8.6",
"date-fns": "^2.30.0",
"dotenv": "^16.4.5",
"ethers": "^6.10.0",
"express": "^4.18.2",
"express-rate-limit": "^7.5.1",
"form-data": "^4.0.0",
"fuse.js": "^7.1.0",
"helmet": "^8.1.0",
"html2canvas": "^1.4.1",
"jsonwebtoken": "^9.0.3",
"jspdf": "^4.2.0",
"lodash": "^4.17.21",
"multer": "^2.0.2",
"node-cache": "^5.1.2",
"node-cron": "^3.0.3",
"nodemailer": "^9.0.3",
"numeral": "^2.0.6",
"pdf-lib": "^1.17.1",
"qrcode": "^1.5.3",
"react-chrono": "^2.6.1",
"redis": "^5.12.1",
"sharp": "^0.35.0",
"socket.io": "^4.7.5",
"vis-timeline": "^7.7.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^7.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"hardhat": "^3.12.0",
"jest": "^30.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.8.1",
"solc": "^0.8.19",
"supertest": "^7.2.2"
},
"overrides": {
"uuid": "^11.1.1",
"tmp": "^0.2.7"
},
"engines": {
"node": "^20.19.0 || >=22.0.0"
}
}