-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 888 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 888 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
{
"name": "metagov",
"version": "1.0.0",
"description": "Metagovernance automation — mirror Nouns DAO proposals to Snapshot, then execute community votes through a Safe",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"watch": "tsc -w"
},
"dependencies": {
"@apollo/client": "^4.1.4",
"@ethersproject/wallet": "^5.8.0",
"@safe-global/api-kit": "^4.0.1",
"@safe-global/protocol-kit": "^6.1.2",
"@safe-global/safe-core-sdk-types": "^5.1.0",
"@snapshot-labs/snapshot.js": "^0.8.0",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.5",
"ethers": "^6.14.0",
"graphql": "^16.9.0",
"node-cron": "^3.0.3"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/node-cron": "^3.0.11",
"ts-node": "^10.9.2",
"typescript": "^5.5.0"
}
}