-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.86 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "uat-tests",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --exit-child src/index.ts",
"start": "ts-node src/index.ts",
"prepare-env-dev": "/bin/bash ./scripts/prepare-env-dev.sh",
"prepare-env-local": "/bin/bash ./scripts/prepare-env-local.sh",
"fund-main-account": "/bin/bash ./scripts/helpers/fund-with-supported-currencies.sh",
"test": "npx jest --runInBand",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix"
},
"keywords": [],
"author": "",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.2",
"@babel/preset-typescript": "^7.24.7",
"@cosmjs/amino": "0.32.4",
"@cosmjs/cosmwasm-stargate": "0.32.4",
"@cosmjs/crypto": "0.32.4",
"@cosmjs/encoding": "0.32.4",
"@cosmjs/ledger-amino": "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",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"babel-jest": "^29.7.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.32.2",
"globals": "^15.13.0",
"jest": "^29.5.0",
"prettier": "^3.1.0",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/math": "^0.32.1",
"@google-cloud/precise-date": "^4.0.0",
"@nolus/nolusjs": "^2.4.17",
"axios": "^1.4.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"cosmjs-types": "^0.9.0",
"dotenv": "^16.0.3",
"starknet": "^6"
}
}