forked from AcalaNetwork/acala-loan-subql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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": "acala-loans",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "yarn build && ./node_modules/.bin/subql-node -f . --timeout=512 --batch-size=1 --port=3123",
"build": "tsc -b",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"codegen": "./node_modules/.bin/subql codegen"
},
"homepage": "https://github.com/subquery/subql-starter",
"repository": "github:subquery/subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "shenger",
"license": "Apache-2.0",
"devDependencies": {
"@polkadot/api": "^7.1.1",
"@subql/cli": "^0.20.0",
"@subql/types": "^0.11.0",
"typescript": "4.2.4"
},
"dependencies": {
"@acala-network/sdk-core": "^4.0.2-19",
"@acala-network/sdk-wallet": "^4.0.2-19",
"@acala-network/subql-utils": "^0.1.18",
"@acala-network/types": "^4.0.2-19",
"@subql/node": "^0.29.1",
"dayjs": "^1.10.7"
},
"resolutions": {
"@acala-network/api": "4.0.2-19",
"@acala-network/types": "4.0.2-19",
"@acala-network/sdk-core": "4.0.2-19",
"@acala-network/sdk-wallet": "4.0.2-19",
"@polkadot/api": "^7.1.1",
"@polkadot/types": "^7.1.1",
"typescript": "4.2.4"
}
}