forked from FluxA-Agent-Payment/APE2_MVP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.59 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.59 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
{
"name": "aep2-mvp",
"version": "1.0.0",
"description": "Agent Embedded Payment v2 MVP",
"scripts": {
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts --network baseSepolia",
"setup": "hardhat run scripts/setup.ts --network baseSepolia",
"deposit": "hardhat run scripts/deposit.ts --network baseSepolia",
"addresses": "ts-node scripts/get-addresses.ts",
"sp": "ts-node services/sp-v2.ts",
"sp-old": "ts-node services/sp.ts",
"payee": "ts-node services/payee.ts",
"faucet": "ts-node services/faucet.ts",
"client": "ts-node services/client.ts",
"test": "hardhat test",
"build": "tsc",
"build:playground": "cd playground && npm run build",
"build:all": "npm run build && npm run build:playground",
"pm2:start": "npm run build:all && pm2 start ecosystem.config.js",
"pm2:stop": "pm2 stop ecosystem.config.js",
"pm2:restart": "pm2 restart ecosystem.config.js",
"pm2:delete": "pm2 delete ecosystem.config.js",
"pm2:logs": "pm2 logs",
"pm2:status": "pm2 status"
},
"keywords": [
"payment",
"agent",
"web3"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"hardhat": "^2.19.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^12.4.1",
"dotenv": "^16.3.1",
"ethers": "^6.9.0",
"express": "^4.18.2",
"node-fetch": "^3.3.2"
}
}