forked from CosmWasm/code-explorer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.19 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
{
"name": "code-explorer",
"version": "0.1.0",
"private": true,
"contributors": [
"Simon Warta"
],
"license": "Apache-2.0",
"scripts": {
"base-start": "react-scripts start",
"start-devnet": "REACT_APP_BACKEND=devnet yarn base-start",
"start-pebblenet": "REACT_APP_BACKEND=pebblenet yarn base-start",
"start": "yarn start-devnet",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint -c .eslintrc.js --max-warnings 0 'src/**/*.ts{,x}'",
"lint-fix": "eslint -c .eslintrc.js 'src/**/*.ts{,x}' --fix",
"deploy": "PUBLIC_URL=https://cosmwasm.github.io/code-explorer/ REACT_APP_BACKEND=pebblenet yarn build && gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
"last 5 chrome version",
"last 5 firefox version",
"last 1 safari version"
],
"development": [
"last 1 chrome version",
"last 1 firefox version"
]
},
"dependencies": {
"@cosmjs/amino": "^0.26.0",
"@cosmjs/cosmwasm-stargate": "^0.26.0",
"@cosmjs/crypto": "^0.26.0",
"@cosmjs/ledger-amino": "^0.26.0",
"@cosmjs/proto-signing": "^0.26.0",
"@cosmjs/stargate": "^0.26.0",
"@cosmjs/utils": "^0.26.0",
"@ledgerhq/hw-transport-webusb": "^5.36.0",
"@types/jest": "^24.0.0",
"@types/jquery": "^3.5",
"@types/node": "^12.0.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.0",
"bootstrap": "^4.5",
"cosmjs-types": "^0.2.0",
"jquery": "^3.5",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-json-editor-ajrm": "^2.5.13",
"react-json-view": "^1.21.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"typescript": "~3.9"
},
"devDependencies": {
"@types/react-router-dom": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-simple-import-sort": "^5.0.2",
"firebase-tools": "^9",
"gh-pages": "^3.1.0",
"prettier": "^2.2.1"
}
}