forked from ola-893/flowpay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.42 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.42 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
{
"name": "flowpay",
"version": "1.0.0",
"description": "FlowPay - The Streaming Extension for x402",
"main": "index.js",
"scripts": {
"test": "npm run test:contracts && npm run test:sdk",
"test:contracts": "npx hardhat test test/FlowPayStream.test.js",
"test:sdk": "npm --prefix sdk run test:all",
"test:integration": "npm --prefix sdk run test:integration",
"deploy:sepolia": "npx hardhat run scripts/deploy.js --network sepolia",
"dev": "npm --prefix vite-project run dev",
"build:web": "npm --prefix vite-project run build",
"preview": "npm --prefix vite-project run preview",
"install:all": "npm install && npm --prefix sdk install && npm --prefix server install && npm --prefix vite-project install",
"demo:provider": "npx ts-node --project demo/tsconfig.json demo/provider.ts",
"demo:consumer": "npx ts-node --project demo/tsconfig.json demo/consumer.ts",
"demo:check": "npx ts-node --project demo/tsconfig.json demo/check-setup.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"hardhat": "^2.26.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"ethers": "^6.11.1",
"express": "^4.18.2"
}
}