-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3.36 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@hyperchain/jssdk",
"version": "1.1.0",
"description": "js-sdk for hyperchain",
"main": "./dist/index.js",
"browser": {
"./dist/index.js": "./dist/index.browser.js"
},
"files": [
"dist"
],
"typings": "./dist/index.d.ts",
"scripts": {
"link": "npm run build && npx yalc publish --no-scripts --push && echo '=========== link success ==========='",
"build": "npx webpack build --config ./webpack.config.js --mode development",
"serve": "npx webpack serve --config ./webpack.config.js --mode development",
"watch": "npx webpack watch --config ./webpack.config.js --mode development",
"test": "jest",
"docker:run:nodesolo": "sh scripts/docker-run-nodesolo.sh",
"build:protos:node": "sh scripts/build-protos-node.sh",
"build:protos:browser": "sh scripts/build-protos-browser.sh",
"prepare": "husky install",
"lint": "npx eslint --ext .js,.jsx,.ts,.tsx,.html src/",
"commit": "cz"
},
"author": "kiyonamiy",
"license": "Apache-2.0",
"devDependencies": {
"@types/elliptic": "^6.4.14",
"@types/jest": "^28.1.6",
"@types/jsbn": "^1.2.30",
"@types/json-bigint": "^1.0.1",
"@types/keccak": "^3.0.1",
"@types/sm-crypto": "^0.3.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"assert": "^2.0.0",
"babel-jest": "^28.1.3",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"commitizen": "^4.2.5",
"console-browserify": "^1.2.0",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.0",
"cz-conventional-changelog": "^3.3.0",
"domain-browser": "^4.22.0",
"eslint": "8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"events": "^3.3.0",
"grpc-web": "^1.3.1",
"grpc_tools_node_protoc_ts": "^5.3.2",
"html-webpack-plugin": "^5.5.0",
"https-browserify": "^1.0.0",
"husky": "^8.0.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"node-fetch": "^3.2.10",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"process": "^0.11.10",
"punycode": "^2.1.1",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"string_decoder": "^1.3.0",
"timers-browserify": "^2.0.12",
"ts-jest": "^28.0.7",
"ts-loader": "^9.2.8",
"tty-browserify": "^0.0.1",
"typescript": "^4.7.4",
"url": "^0.11.0",
"util": "^0.12.4",
"vm-browserify": "^1.1.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.7.4",
"yalc": "*"
},
"dependencies": {
"@peculiar/asn1-ecc": "^2.3.4",
"@peculiar/asn1-schema": "^2.3.3",
"elliptic": "^6.5.4",
"js-sha256": "^0.9.0",
"jsbn": "^1.1.0",
"json-bigint": "^1.0.0",
"jszip": "^3.10.1",
"keccak": "^3.0.2",
"keccak256": "^1.0.6",
"sm-crypto": "^0.3.10",
"uuid": "^8.3.2",
"web3-eth-abi": "^1.7.5",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,html}": [
"npx eslint"
]
}
}