-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 991 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 991 Bytes
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
{
"main": "index.js",
"scripts": {
"nuke-api": "rm -rf gen/api-next && openapi-generator-cli generate -i swagger.yaml -g typescript-axios -o gen/api-next --config api.json && rm -rf gen/api && mv gen/api-next gen/api && cd gen/api && npm install && npm run build",
"dev": "ts-node-dev --respawn --transpile-only ./index.ts",
"start": "tsc && cp sample.env ./dist && node dist/index.js",
"build": "tsc && cp sample.env ./dist",
"test": "jest"
},
"dependencies": {
"@cosmjs/crypto": "^0.25.3",
"@cosmjs/launchpad": "^0.25.3",
"@cosmjs/stargate": "^0.25.5",
"@types/node": "^15.3.1",
"dotenv": "^9.0.2",
"ethers": "^5.3.1",
"long": "^4.0.0",
"sifchain": "file:./gen/api",
"web3": "^1.3.6"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.2.8",
"@openzeppelin/test-helpers": "^0.5.11",
"@types/jest": "^26.0.23",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typescript": "^3.9.9"
}
}