forked from cosmicpoet/kanaria-land-sale-squid
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
{
"name": "kusama-balances",
"private": true,
"scripts": {
"build": "rm -rf lib && tsc",
"db:migrate": "npx squid-typeorm-migration apply",
"squid-etl:start": "node lib/processor.js",
"squid-api:start": "squid-graphql-server",
"lint": "npm run lint:prod -- --fix",
"lint:prod": "eslint . --ext .ts --ignore-path .gitignore --max-warnings 0"
},
"dependencies": {
"@ethersproject/abi": "^5.6.4",
"@subsquid/archive-registry": "^1.0.18",
"@subsquid/cli": "^2.0.1",
"@subsquid/evm-typegen": "^2.0.2",
"@subsquid/graphql-server": "^3.3.0",
"@subsquid/ss58": "^0.1.2",
"@subsquid/substrate-processor": "^2.1.0",
"@subsquid/typeorm-migration": "^0.1.4",
"@subsquid/typeorm-store": "^0.1.5",
"dotenv": "^10.0.0",
"ethers": "^5.6.9",
"pg": "^8.7.3",
"proxy-agent": "^5.0.0",
"typeorm": "^0.3.6",
"web3-providers-http": "^1.8.0"
},
"devDependencies": {
"@subsquid/substrate-metadata-explorer": "^1.0.9",
"@subsquid/substrate-typegen": "^2.0.0",
"@subsquid/typeorm-codegen": "^0.3.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-type-graphql": "^0.3.2",
"typescript": "~4.6.2"
}
}