forked from chainapsis/keplr-wallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.63 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": "keplr",
"version": "0.6.7",
"description": "Keplr is a browser extension wallet for the Inter blockchain ecosystem.",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "cross-env NODE_ENV=development webpack",
"dev:analyzer": "cross-env NODE_ENV=development ANALYZER=true webpack",
"test": "cross-env TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --timeout 30000 -r ts-node/register 'src/**/*.spec.ts'",
"lint-test": "eslint \"src/**/*\" webpack.config.js && prettier --check \"src/**/*\" webpack.config.js",
"lint-fix": "eslint --fix \"src/**/*\" webpack.config.js && prettier --write \"src/**/*\" webpack.config.js"
},
"pre-commit": [
"lint-test"
],
"keywords": [],
"author": "chainapsis",
"license": "Apache-2.0",
"dependencies": {
"@chainapsis/cosmosjs": "git+https://github.com/chainapsis/cosmosjs-dist.git#b271dc5",
"@cosmjs/encoding": "^0.23.0",
"@cosmjs/launchpad": "^0.23.0",
"@ensdomains/resolver": "^0.2.4",
"@fortawesome/fontawesome-free": "^5.11.2",
"@ledgerhq/hw-transport-webhid": "^5.23.0",
"@ledgerhq/hw-transport-webusb": "^5.21.0",
"aes-js": "^3.1.2",
"argon-dashboard-react": "^1.1.0",
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"bip39": "^3.0.2",
"buffer": "^5.4.3",
"chart.js": "^2.9.3",
"classnames": "^2.2.6",
"delay": "^4.4.0",
"ethereum-ens": "^0.8.0",
"framer-motion": "^1.6.14",
"joi": "^17.2.1",
"ledger-cosmos-js": "^2.1.7",
"mobx": "^5.15.0",
"mobx-react": "^6.1.3",
"mobx-utils": "^5.5.2",
"popper.js": "^1.15.0",
"qrcode": "^1.4.4",
"query-string": "^6.8.3",
"react": "^16.9.0",
"react-chartjs-2": "^2.10.0",
"react-dom": "^16.9.0",
"react-hook-form": "^3.29.3",
"react-intl": "^3.9.3",
"react-modal": "^3.11.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"reactstrap": "^8.4.1",
"scrypt-js": "^2.0.4",
"scryptsy": "^2.1.0",
"sha.js": "^2.4.11",
"web3": "^1.2.6",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@types/aes-js": "^3.1.0",
"@types/chart.js": "^2.9.25",
"@types/chrome": "0.0.88",
"@types/classnames": "^2.2.9",
"@types/firefox-webext-browser": "^70.0.1",
"@types/ledgerhq__hw-transport-webusb": "^4.70.0",
"@types/mocha": "^5.2.7",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/react-modal": "^3.10.0",
"@types/react-router-dom": "^5.1.2",
"@types/reactstrap": "^8.4.2",
"@types/scrypt-js": "^2.0.3",
"@types/secp256k1": "^4.0.1",
"@types/sha.js": "^2.4.0",
"@types/webpack": "^4.39.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^6.2.2",
"node-sass": "^4.13.1",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"sass-loader": "^7.3.1",
"serialize-javascript": ">=3.1.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.0.4",
"ts-node": "^8.5.2",
"typescript": "^3.7.2",
"webpack": "^4.39.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.2",
"write-file-webpack-plugin": "^4.5.1"
}
}