-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.87 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
62
63
{
"name": "@neutron-org/neutronjsplus",
"version": "0.5.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/neutron-org/neutronjsplus.git"
},
"scripts": {
"build": "rimraf ./build && tsc",
"lint": "eslint ./src",
"fmt": "eslint ./src --fix",
"build:neutronjs": "cd ${INIT_CWD:-$(pwd)} && [ -d './node_modules/@neutron-org/neutronjs/dist' ] || { tsc -p ./node_modules/@neutron-org/neutronjs/tsconfig.json && cp -R ./node_modules/@neutron-org/neutronjs/build/* ./node_modules/@neutron-org/neutronjs/ ; }",
"postinstall": "yarn build:neutronjs"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "0.32.4",
"@neutron-org/neutronjs": "https://github.com/neutron-org/neutronjs.git#95a719604fecba39de5540b6ac99ded3e7aacfaa",
"axios": "1.6.0",
"bip39": "^3.1.0",
"long": "^5.2.1",
"merkletreejs": "^0.3.9"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/express": "^4.17.9",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^12.3.8",
"prettier": "^2.6.2",
"rimraf": "5.0.1",
"ts-node": "^9.1.1",
"tslint": "^5.20.1",
"typescript": "^5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "yarn build"
}
},
"lint-staged": {
"./**/src/**/*.{ts,tsx}": [
"eslint --max-warnings=0",
"jest --bail --findRelatedTests"
],
"./**/*.{ts,tsx,js,jsx,md,json}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0"
}
}