forked from cudoventures/big-dipper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.75 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
{
"name": "@forbole/big-dipper",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"lint": "eslint --ext .jsx,.js --fix --ignore-pattern imports/ui/App.jsx imports/",
"lintdiff": "LIST=`git diff-index --name-only master | grep .*\\.js | grep -v json`; if [ \"$LIST\" ]; then eslint --ext .jsx,.js --ignore-pattern imports/ui/App.jsx $LIST; fi",
"pretest": "npm run lint --silent",
"genversion": "./scripts/genversion.sh",
"gen_codec": "./scripts/gen_codec.sh"
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"@chainapsis/cosmosjs": "0.0.3-alpha.3",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.28.4",
"@cosmjs/stargate": "^0.28.4",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@keplr-wallet/unit": "^0.9.0-alpha.7",
"@ledgerhq/hw-transport-webusb": "^4.78.0",
"@mui/material": "^5.6.2",
"@types/meteor-universe-i18n": "^1.14.5",
"babel-polyfill": "^6.26.0",
"bech32": "^1.1.4",
"bignumber.js": "^9.0.1",
"bootstrap": "^4.6.0",
"bootswatch": "^4.6.0",
"chart.js": "^2.9.4",
"cheerio": "^1.0.0-rc.10",
"cosmjs-types": "^0.4.1",
"crypto-js": "^3.3.0",
"d3": "^5.16.0",
"fibers": "^4.0.3",
"history": "^5.0.1",
"jquery": "^3.6.0",
"js-sha256": "^0.9.0",
"ledger-cosmos-js": "^2.1.8",
"lodash": "^4.17.21",
"long": "^4.0.0",
"meteor-node-stubs": "^0.4.1",
"moment": "^2.27.0",
"moment-timezone": "^0.5.33",
"numbro": "^2.3.5",
"plottable": "^3.9.0",
"prop-types": "^15.7.2",
"protobufjs": "^6.11.2",
"react": "^16.14.0",
"react-chartjs-2": "^2.11.1",
"react-cookie-consent": "^7.2.1",
"react-dom": "^16.13.1",
"react-google-tag-manager": "^2.2.1",
"react-helmet": "^5.2.1",
"react-jazzicon": "^0.1.3",
"react-json-view": "^1.21.3",
"react-pose": "^4.0.10",
"react-router-dom": "^4.3.1",
"react-showdown": "^1.6.0",
"react-sidebar": "^3.0.2",
"react-simple-tooltip": "^2.6.3",
"react-table": "^7.7.0",
"react-toastify": "^4.5.2",
"reactstrap": "^8.9.0",
"rollup": "^2.41.1",
"secp256k1": "^3.8.0",
"styled-components": "^4.4.1",
"tendermint": "^4.0.8",
"tooltip.js": "^1.3.3",
"ts-proto": "^1.81.1",
"uint8-to-base64": "^0.2.0",
"voca": "^1.4.0"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^10.1.0",
"chai": "^4.3.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-meteor": "^5.2.0",
"eslint-plugin-react": "^7.22.0"
}
}