-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.84 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
{
"name": "explorer",
"version": "0.5.1",
"author": "Encointer",
"license": "GPL-3.0-or-later",
"dependencies": {
"@artsy/fresnel": "^3.2.1",
"@encointer/node-api": "^0.14.0",
"@encointer/types": "^0.14.0",
"@encointer/util": "^0.14.0",
"@encointer/worker-api": "^0.14.0",
"@polkadot/api": "^11.0.2",
"@polkadot/extension-dapp": "^0.47.3",
"@polkadot/keyring": "^12.6.2",
"@polkadot/networks": "^12.6.2",
"@polkadot/types": "^11.0.2",
"@polkadot/ui-keyring": "^3.6.6",
"@polkadot/ui-settings": "^3.6.6",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"assert": "^2.0.0",
"big.js": "^6.1.1",
"bs58": "^4.0.1",
"leaflet": "^1.7.1",
"pretty-error": "^4.0.0",
"prop-types": "^15.8.1",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-leaflet": "^2.7.0",
"react-leaflet-markercluster": "^2.0.0",
"react-scripts": "5.0.0",
"semantic-ui-css": "git+https://github.com/Semantic-Org/Semantic-UI-CSS.git",
"semantic-ui-react": "^2.0.3",
"toformat": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@mapbox/tilebelt": "^1.0.2",
"@mapbox/timespace": "^2.0.4",
"eslint": "^8.6.0",
"eslint-config-semistandard": "^16.0.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^5.0.0",
"semistandard": "^16.0.0"
},
"scripts": {
"start": "PORT=8000 react-scripts start",
"build": "react-scripts build",
"test": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint src/**.js",
"lint:ci": "eslint src/** --max-warnings=0",
"predeploy": "yarn build",
"deploy": "gh-pages -d build -m '[ci skip] Updates'",
"encointer:link": "./scripts/encointer-link.cjs",
"encointer:unlink": "./scripts/encointer-unlink.cjs"
},
"eslintConfig": {
"extends": [
"react-app",
"semistandard"
],
"plugins": [
"only-warn"
],
"rules": {
"semi": [
1,
"always"
],
"no-extra-semi": 1
}
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "https://explorer.encointer.org",
"bugs": {
"url": "https://github.com/encointer/explorer/issues"
},
"keywords": [
"substrate",
"substrate-ui",
"polkadot-js"
],
"packageManager": "[email protected]"
}