-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.8 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.8 KB
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
{
"name": "@dfuse/explorer",
"version": "0.0.7",
"description": "Common library for dfuse blockchain explorers",
"main": "dist/lib/index.js",
"typings": "dist/types/index.d.ts",
"repository": "https://github.com:dfuse-io/dexplorer.git",
"author": {
"name": "dfuse Developers",
"email": "dev@dfuse.io",
"url": "https://dfuse.io"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --format=pretty --ext .js,.jsx,.ts,.tsx",
"lint:specific": "eslint . --format=pretty",
"prebuild": "rimraf dist",
"prepublishOnly": "yarn build",
"publish:latest": "yarn publish --public",
"publish:next": "yarn publish --public --tag next",
"postversion": "node scripts/gh-push.js"
},
"dependencies": {
"@dfuse/client": "^0.3.21",
"@fortawesome/fontawesome-svg-core": "^1.2.29",
"@fortawesome/free-brands-svg-icons": "^5.13.1",
"@fortawesome/free-solid-svg-icons": "^5.13.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"@types/humanize-plus": "^1.8.0",
"@types/numeral": "^0.0.28",
"@types/ramda": "^0.27.7",
"antd": "^4.4.1",
"dayjs": "^1.8.29",
"graphql": "^15.1.0",
"humanize-plus": "^1.8.2",
"js-sha256": "^0.9.0",
"moment-duration-format": "^2.3.2",
"moment-timezone": "^0.5.31",
"numeral": "^2.0.6",
"ramda": "^0.27.0"
},
"peerDependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@types/react": "^16.9.38",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/react-spinkit": "^3.0.6",
"@types/styled-system": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-testing-library": "^3.9.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"rimraf": "^2.6.3",
"shelljs": "^0.8.4",
"styled-system": "^5.1.5",
"typescript": "^4.0.5"
}
}