-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathpackage.json
101 lines (101 loc) · 2.79 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
{
"name": "insight",
"version": "10.0.11",
"description": "Insight Blockchain Explorer",
"license": "MIT",
"homepage": "insight",
"private": true,
"keywords": [
"insight",
"insight-ui",
"blockchain",
"block explorer",
"bitcoin",
"bitcore",
"API"
],
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx,json}\"",
"fix:lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx,json}\"",
"fix:prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,md,json}\" --config ./.prettierrc",
"postbuild": "./postbuild.sh"
},
"dependencies": {
"@reduxjs/toolkit": "2.3.0",
"assert": "2.1.0",
"axios": "1.7.9",
"bitcore-lib": "^10.0.23",
"bitcore-lib-cash": "^10.0.23",
"bitcore-lib-doge": "^10.0.21",
"bitcore-lib-ltc": "^10.0.21",
"buffer": "6.0.3",
"chart.js": "4.4.6",
"crypto-browserify": "3.12.1",
"framer-motion": "11.11.11",
"nprogress": "0.2.0",
"process": "0.11.10",
"qrcode.react": "3.0.1",
"react": "18.1.0",
"react-app-rewired": "2.2.1",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.1.0",
"react-infinite-scroll-component": "6.1.0",
"react-masonry-css": "1.0.16",
"react-parallax": "3.5.1",
"react-redux": "9.1.2",
"react-router-dom": "6.3.0",
"react-scripts": "5.0.1",
"redux": "5.0.1",
"redux-thunk": "3.1.0",
"stream-browserify": "3.0.0",
"styled-components": "5.3.5",
"swr": "1.3.0",
"url": "0.11.4",
"vm-browserify": "1.1.2",
"web-vitals": "2.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.0.1",
"@testing-library/user-event": "13.5.0",
"@types/chart.js": "2.9.41",
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@types/nprogress": "0.2.0",
"@types/qrcode.react": "1.0.2",
"@types/react": "18.3.12",
"@types/react-copy-to-clipboard": "5.0.2",
"@types/react-dom": "18.0.0",
"@types/react-redux": "7.1.34",
"@types/styled-components": "5.1.25",
"@typescript-eslint/eslint-plugin": "5.23.0",
"@typescript-eslint/parser": "5.23.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.30.0",
"file-loader": "6.2.0",
"prettier": "2.6.2",
"typescript": "4.6.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=20"
}
}