forked from bitpay/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.44 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.44 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": "insight",
"version": "10.0.0",
"description": "Insight Blockchain Explorer",
"license": "MIT",
"homepage": "insight",
"private": true,
"keywords": [
"insight",
"insight-ui",
"blockchain",
"block explorer",
"bitcoin",
"bitcore",
"API"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts 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": "1.8.1",
"axios": "0.21.1",
"chart.js": "3.5.1",
"framer-motion": "6.3.3",
"nprogress": "0.2.0",
"qrcode.react": "3.0.1",
"react": "18.1.0",
"react-chartjs-2": "3.2.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.0.0",
"react-infinite-scroll-component": "6.1.0",
"react-masonry-css": "1.0.16",
"react-parallax": "3.3.0",
"react-redux": "8.0.1",
"react-router-dom": "6.3.0",
"react-scripts": "5.0.1",
"redux": "4.2.0",
"redux-thunk": "2.4.1",
"styled-components": "5.3.5",
"swr": "1.3.0",
"web-vitals": "2.1.4"
},
"devDependencies": {
"@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.34",
"@types/jest": "27.4.1",
"@types/node": "16.11.26",
"@types/nprogress": "0.2.0",
"@types/qrcode.react": "1.0.2",
"@types/react": "18.0.4",
"@types/react-copy-to-clipboard": "5.0.2",
"@types/react-dom": "18.0.0",
"@types/react-redux": "7.1.24",
"@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"
},
"resolutions": {
"styled-components": "5"
},
"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": ">=12"
}
}