-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 4.09 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
{
"name": "@provenanceio/wallet-lib",
"version": "2.5.0",
"description": "Provenance wallet interface library",
"main": "lib/index.js",
"module": "esm/index.js",
"private": false,
"sideEffects": false,
"license": "Apache-2.0",
"files": [
"lib",
"esm"
],
"scripts": {
"clean": "rm -rf ./lib ./esm",
"build": "npm run clean && npm run build-protos && npm run schema-to-ts && npm run build:commonjs && npm run build:esm && npm run tsc:esm && npm run tsc:commonjs",
"build:esm": "BABEL_ENV=esm babel src -d esm --extensions \".ts,.js,.tsx\" --copy-files --ignore \"src/**/*.stories.tsx,src/**/*.d.ts,src/**/*/*.stories.ts\"",
"build:commonjs": "BABEL_ENV=cjs babel ./src --extensions \".ts,.js,.tsx\" -d lib --copy-files --ignore \"src/**/*.stories.tsx,src/**/*.d.ts,src/**/*/*.stories.ts\"",
"build-protos": "bash ./scripts/build-protos.sh",
"docs": "npx typedoc src/index.ts",
"schema-to-ts": "json2ts -i third_party/schema -o src/types/schema/",
"watch": "chokidar \"src/**/*.ts\" \"src/**/*.tsx\" -c \"npm run build:commonjs && npm run build:esm && npm run tsc:esm && npm run tsc:commonjs && npm run lint\"",
"tsc:esm": "tsc --module es2015 --outDir esm",
"tsc:commonjs": "tsc --module commonjs --outDir lib",
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'; exit 0",
"lint:watch": "chokidar \"src/**/*.ts\" \"src/**/*.tsx\" \".eslintrc\" -c \"npm run lint\"",
"prepare": "npm run build",
"postbuild": "node ./checkCircularDeps.js",
"postversion": "git push origin HEAD --follow-tags",
"start": "npm run lint:watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/provenance-io/wallet-lib.git"
},
"keywords": [
"react",
"presentation"
],
"author": "Provenance",
"bugs": {
"url": "https://github.com/provenance-io/wallet-lib/issues"
},
"homepage": "https://github.com/provenance-io/wallet-lib#readme",
"devDependencies": {
"@babel/cli": "7.13.16",
"@babel/core": "7.14.0",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.13.8",
"@babel/plugin-proposal-object-rest-spread": "7.13.8",
"@babel/plugin-proposal-optional-chaining": "7.13.12",
"@babel/plugin-transform-object-assign": "7.12.13",
"@babel/plugin-transform-react-constant-elements": "7.13.13",
"@babel/plugin-transform-runtime": "7.13.15",
"@babel/preset-env": "7.14.1",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.13.0",
"@types/big.js": "6.1.1",
"@types/create-hash": "1.2.2",
"@types/google-protobuf": "3.15.2",
"@types/node": "15.0.2",
"@types/react": "17.0.5",
"@types/react-dom": "17.0.4",
"@types/react-router-dom": "5.1.7",
"@types/secp256k1": "4.0.2",
"@types/styled-components": "5.1.9",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"babel-loader": "8.2.2",
"babel-plugin-styled-components": "1.12.0",
"chalk": "4.1.1",
"chokidar-cli": "2.1.0",
"concurrently": "6.1.0",
"dedent": "0.7.0",
"eslint": "7.26.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"focus-visible": "5.2.0",
"grpc_tools_node_protoc_ts": "5.2.2",
"json-schema-to-typescript": "10.1.4",
"madge": "4.0.2",
"prettier": "2.3.0",
"protoc-gen-grpc-web": "1.4.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "5.2.0",
"styled-components": "5.3.0",
"typescript": "4.2.4"
},
"dependencies": {
"@tendermint/belt": "0.3.0",
"@tendermint/sig": "0.6.0",
"@types/create-hash": "1.2.2",
"@types/google-protobuf": "3.15.2",
"@types/secp256k1": "4.0.2",
"big.js": "6.1.1",
"google-protobuf": "3.16.0",
"grpc-tools": "1.11.3",
"grpc-web": "1.2.1",
"secp256k1": "4.0.2",
"typedoc": "0.21.4"
}
}