-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 917 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 917 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
{
"name": "execution-acp-service",
"version": "1.0.0",
"description": "Execution Protocol as Virtuals ACP Service with ATTEST integration",
"main": "src/index.js",
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"test": "jest",
"deploy": "node scripts/deploy.js",
"deploy:testnet": "npx hardhat run scripts/deploy-testnet.js --network baseSepolia"
},
"dependencies": {
"@openzeppelin/contracts": "^5.6.1",
"axios": "^1.6.2",
"cors": "^2.8.5",
"ethers": "^6.9.0",
"express": "^4.18.2",
"express-rate-limit": "^8.3.0",
"jsonwebtoken": "^9.0.2",
"rate-limiter-flexible": "^4.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"dotenv": "^17.3.1",
"hardhat": "^2.28.6",
"jest": "^29.7.0",
"nodemon": "^3.0.2"
}
}