-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
66 lines (66 loc) · 1.85 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
{
"name": "hathor-admin",
"version": "0.20.5",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"private": true,
"dependencies": {
"@hathor/wallet-lib": "1.10.0",
"@unleash/proxy-client-react": "1.0.4",
"axios": "1.7.2",
"bootstrap": "5.3.3",
"d3-selection": "3.0.0",
"d3-zoom": "3.0.0",
"font-awesome": "4.7.0",
"highlight.js": "11.10.0",
"jquery": "3.7.1",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"popper.js": "1.16.1",
"prop-types": "15.8.1",
"qrcode.react": "3.1.0",
"react": "18.2.0",
"react-cookie-consent": "9.0.0",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "18.2.0",
"react-gtm-module": "2.0.11",
"react-loading": "2.0.3",
"react-paginate": "8.2.0",
"react-redux": "8.1.3",
"react-router-dom": "5.3.4",
"react-scripts": "3.4.4",
"redux": "4.2.1",
"sass": "1.77.8",
"unleash-proxy-client": "1.11.0",
"viz.js": "2.1.2"
},
"scripts": {
"build-css": "sass src:src",
"watch-css": "npm run build-css && sass --watch src:src",
"start-js": "react-scripts --openssl-legacy-provider start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts --openssl-legacy-provider build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"lint": "eslint 'src/**/*.js'",
"lint:fix": "eslint 'src/**/*.js' --fix",
"format": "prettier --write 'src/**/*.js'",
"format:check": "prettier --check 'src/**/*.js'",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.35.0",
"prettier": "1.19.1"
}
}