-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "stable-asset-subql-v2",
"version": "0.0.0",
"description": "A basic Acala EVM example",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"prepack": "rm -rf dist && npm build",
"test": "jest",
"codegen": "subql codegen"
},
"homepage": "https://github.com/subquery/tutorials-frontier-evm-starter",
"repository": "github:subquery/tutorials-frontier-evm-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "SubQuery Pte. Limited",
"license": "Apache-2.0",
"dependencies": {
"@acala-network/type-definitions": "^4.1.1",
"@subql/acala-evm-processor": "^0.0.1-0",
"dayjs": "^1.11.3"
},
"devDependencies": {
"@polkadot/api": "^8",
"@subql/cli": "latest",
"@subql/types": "latest",
"typescript": "^4.4.4",
"@types/eslint": "8.4.3"
},
"exports": {
"acalaEvm": "./node_modules/@subql/acala-evm-processor/dist/index.js",
"chaintypes": "./src/chaintypes.ts"
},
"resolutions": {
"ipfs-unixfs": "6.0.6"
}
}