This repository was archived by the owner on Mar 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.08 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.08 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "blitz",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/alt-research/blitz.git",
"author": "fyInALT <fy@altresear.ch>",
"license": "MIT",
"scripts": {
"build": "bash ./scripts/build-contract.sh",
"test-deploy": "yarn node ./node_modules/@cosmjs/cli/bin/cosmjs-cli --init ./ts-scripts/deploy_and_call.ts --code \"process.exit(0)\"",
"test-reset": "yarn node ./node_modules/@cosmjs/cli/bin/cosmjs-cli --init ./ts-scripts/reset.ts --code \"process.exit(0)\"",
"format": "prettier --write --log-level warn \"./src/**/*.ts\"",
"format-script": "prettier --write --log-level warn \"./ts-scripts/**/*.ts\""
},
"dependencies": {
"@cosmjs/amino": "^0.32.4",
"@cosmjs/cli": "^0.32.4",
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/encoding": "^0.32.4",
"@cosmjs/faucet-client": "^0.32.4",
"@cosmjs/math": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@cosmjs/utils": "^0.32.4",
"axios": "^1.13.5",
"cosmjs-types": "^0.9.0",
"diff": "^8.0.3",
"dotenv": "^16.4.7",
"recast": "^0.23.4",
"typescript": "^5.3.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/babylon": "^6.16.9",
"@types/diff": "^5.0.9",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/jasmine": "^5.1.4",
"@types/node": "^18",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^7.5",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"esm": "^3.2.25",
"jasmine": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"prettier": "^3.1.1",
"source-map-support": "^0.5.21"
},
"resolutions": {
"glob": "^11.1.0",
"bn.js": ">=5.2.3",
"minimatch": ">=10.2.3"
}
}