-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
37
38
39
40
41
42
43
{
"name": "merkle_tree",
"version": "1.0.0",
"main": "build/index.js",
"license": "MIT",
"scripts": {
"build": "pnpm graphclient build",
"writeTree": "pnpm ts-node ./src/writeTree.ts",
"writeTree:dev": "INCLUDE_DEV_ACCOUNTS=true pnpm ts-node ./src/writeTree.ts",
"populateCache": "pnpm ts-node ./scripts/populateCache.ts",
"getPubKey": "pnpm ts-node ./scripts/getPubKey.ts"
},
"dependencies": {
"@ethereumjs/tx": "^4.1.1",
"@ethereumjs/util": "^8.0.5",
"@personaelabs/spartan-ecdsa": "^2.1.4",
"@prisma/client": "4.5.0",
"alchemy-sdk": "^2.6.1",
"async-lock": "1.4.0",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"ethers": "^6.1.0",
"graphql": "16.6.0",
"graphql-tag": "2.12.6",
"nerman": "0.0.4",
"@types/node": "18.11.3"
},
"devDependencies": {
"@graphprotocol/client-cli": "2.2.15",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"csv-parser": "^3.0.0",
"eslint": "^8.36.0",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.3.1",
"prettier": "^2.8.4",
"prisma": "4.5.0",
"ts-jest": "^29.0.3",
"ts-node": "10.9.1",
"typescript": "^5.0.2"
}
}