forked from subsquid-labs/squid-substrate-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 986 Bytes
/
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
{
"name": "kusama-balances",
"private": true,
"scripts": {
"build": "rm -rf lib && tsc",
"init": "node db/init.js",
"proc-balances": "node lib/processor.js",
"api": "squid-graphql-server"
},
"dependencies": {
"@subsquid/cli": "^0.1.2",
"@subsquid/graphql-server": "^0.1.4",
"@subsquid/ss58": "^0.0.4",
"@subsquid/substrate-processor": "^0.3.0",
"dotenv": "^10.0.0",
"pg": "^8.7.1",
"typeorm": "^0.2.41"
},
"devDependencies": {
"@subsquid/substrate-metadata-explorer": "^0.0.7",
"@subsquid/substrate-typegen": "^0.2.1",
"@types/node": "^16.11.17",
"typescript": "~4.5.4",
"@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"
}
}