-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "nova-governance",
"version": "0.0.1",
"description": "Project for tracking direct and delegated votings gor OpenGov",
"main": "dist/index.js",
"scripts": {
"build": "subql build",
"codegen": "subql codegen",
"start:docker": "docker-compose pull && docker-compose up --remove-orphans",
"dev": "subql codegen && subql build && docker-compose pull && docker-compose up --remove-orphans",
"prepack": "rm -rf dist && npm run build",
"test": "jest"
},
"homepage": "https://github.com/subquery/kusama-subql-starter",
"repository": "github:subquery/kusama-subql-starter",
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"author": "Nova Wallet Team",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@polkadot/api": "^10",
"@subql/cli": "^3.5.0",
"@subql/types": "^2.2.0",
"jest": "^29.3.1",
"moonbeam-types-bundle": "^2.0.10",
"ts-jest": "^29.0.3",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/big.js": "^6.1.6",
"big.js": "^6.2.1",
"subquery-call-visitor": "^1.2.7"
},
"exports": {
"moonbeamChaintypes": "./chainTypes/moonbeamChaintypes.ts"
}
}