forked from etclabscore/expedition
-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
90 lines (90 loc) · 2.74 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
{
"name": "@xops.net/expedition",
"version": "1.0.2",
"description": "Expedition is a block explorer for the Ethereum Stack",
"keywords": [
"typescript",
"react",
"dapp"
],
"repository": {
"type": "git",
"url": "https://github.com/xops/expedition.git"
},
"scripts": {
"build": "react-scripts build && cp build/index.html build/404.html",
"start": "react-scripts start",
"test": "react-scripts test",
"lint": "tslint -p tsconfig.json",
"version": "cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]'"
},
"dependencies": {
"@etclabscore/eserialize": "^1.0.2",
"@etclabscore/ethereum-json-rpc": "^1.3.13",
"@etclabscore/ethereum-json-rpc-specification": "git+https://github.com/etclabscore/ethereum-json-rpc-specification.git",
"@material-ui/core": "^4.5.2",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.5.2",
"@monaco-editor/react": "^2.1.1",
"@qiwi/semantic-release-gh-pages-plugin": "^1.14.2",
"@semantic-release/changelog": "^3.0.5",
"@semantic-release/commit-analyzer": "^6.3.3",
"@semantic-release/git": "^7.0.18",
"@semantic-release/github": "^5.5.5",
"@semantic-release/npm": "^5.3.4",
"@semantic-release/release-notes-generator": "^7.3.2",
"bignumber.js": "^9.0.0",
"ethereumjs-util": "^6.1.0",
"ethjs-unit": "^0.1.6",
"history": "^4.9.0",
"i18next": "^17.3.1",
"i18next-browser-languagedetector": "^3.1.1",
"lodash": "^4.17.20",
"moment": "^2.24.0",
"qs": "^6.5.2",
"query-string": "^6.8.3",
"raf": "^3.4.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-i18next": "^10.13.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"reusable": "^1.0.0-alpha.12",
"semantic-release": "^15.13.30",
"semantic-release-docker": "^2.2.0",
"use-dark-mode": "^2.3.1",
"use-interval": "^1.1.0",
"use-query-params": "^0.4.6",
"use-react-router": "^1.0.7",
"victory": "^33.1.3"
},
"devDependencies": {
"@semantic-release/exec": "^3.3.8",
"@types/bignumber.js": "^4.0.3",
"@types/jest": "^21.1.6",
"@types/lodash": "^4.14.149",
"@types/node": "^14.11.8",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.3",
"@types/react-router-dom": "^5.1.1",
"@types/victory": "^31.0.19",
"react-scripts": "^3.4.3",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.0",
"tslint": "^5.8.0",
"tslint-react": "^4.1.0",
"typescript": "^3.9.7"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}