-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "hathor-admin",
"version": "0.10.0",
"private": true,
"dependencies": {
"@hathor/wallet-lib": "^0.29.0",
"axios": "^0.21.2",
"bootstrap": "^4.0.0",
"d3-selection": "^1.3.2",
"d3-zoom": "^1.7.3",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-react": "^7.5.1",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"lodash": "^4.17.11",
"node-sass-chokidar": "1.4.0",
"npm-run-all": "^4.1.2",
"popper.js": "^1.12.9",
"prop-types": "^15.7.2",
"qrcode.react": "^0.8.0",
"react": "^16.12.0",
"react-cookie-consent": "^6.2.4",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-gtm-module": "^2.0.11",
"react-loading": "^1.0.3",
"react-paginate": "^5.0.0",
"react-redux": "^5.0.7",
"react-router-dom": "4.2.2",
"react-scripts": "^3.2.0",
"redux": "^4.0.0",
"viz.js": "^2.1.2"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}