generated from zenlinkpro/zenlink-astar-subsquid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.45 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
44
45
{
"name": "squid-evm-template",
"private": true,
"scripts": {
"build": "rm -rf lib && tsc",
"db:migrate": "npx squid-typeorm-migration apply",
"processor:start": "node lib/processor.js",
"query-node:start": "squid-graphql-server",
"lint": "eslint . --ext .ts --ignore-path .gitignore --ignore-pattern src/abi/**/* --fix",
"typegen:abis": "node scripts/gen-abis.ts"
},
"dependencies": {
"@ethersproject/abi": "5.7.0",
"@ethersproject/bignumber": "5.7.0",
"@subsquid/archive-registry": "^3.2.0",
"@subsquid/cli": "^2.4.4",
"@subsquid/evm-typegen": "^3.2.2",
"@subsquid/graphql-server": "^4.3.0",
"@subsquid/ss58": "^0.1.4",
"@subsquid/typeorm-migration": "^1.2.1",
"@subsquid/typeorm-store": "^1.2.2",
"@subsquid/evm-processor": "^1.8.1",
"assert": "^2.0.0",
"big.js": "^6.2.1",
"dotenv": "^16.0.3",
"ethers": "^6.3.0",
"pg": "^8.8.0",
"typeorm": "^0.3.17"
},
"devDependencies": {
"@subsquid/evm-typegen": "^3.2.2",
"@subsquid/typeorm-codegen": "^1.3.1",
"@types/big.js": "6.1.6",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "4.33.0",
"eslint": "7.32.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-type-graphql": "1.0.0",
"typescript": "^4.9.4"
}
}