forked from 0xPrimordia/impact-stream-scripts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1.31 KB
/
package.json
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
{
"name": "impact-stream-scripts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"deploy-strategy": "pnpm build && node ./dist/src/deploy-strategy.js",
"create-pool": "pnpm build && node ./dist/src/create-pool.js",
"create-profiles": "pnpm build && node ./dist/src/create-profiles.js",
"deploy-safes": "pnpm build && node ./dist/src/deploy-safes.js",
"register-allocators": "pnpm build && node ./dist/src/register-allocators.js",
"register-recipients": "pnpm build && node ./dist/src/register-recipients.js",
"calculate-payouts": "pnpm build && node ./dist/src/calculate-payouts.js",
"set-payouts": "pnpm build && node ./dist/src/set-payouts.js",
"distribute-payouts": "pnpm build && node ./dist/src/distribute-payouts.js",
"fund-allocators": "pnpm build && node ./dist/src/fund-allocators.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/minimist": "^1.2.4",
"@types/node": "^20.8.7",
"dotenv": "^16.3.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@safe-global/api-kit": "^1.3.1",
"@safe-global/protocol-kit": "^1.3.0",
"@safe-global/safe-core-sdk-types": "^2.3.0",
"@supabase/supabase-js": "^2.38.2",
"ethers": "5.7.2",
"web3-core": "^4.3.1"
}
}