forked from hermeznetwork/batch-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
{
"name": "batch-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"start:dev": "react-scripts start",
"start:prod": "serve -s -C -p 80 build",
"build": "react-scripts build",
"format": "prettier --write .",
"lint": "eslint --cache --fix --ext .js,.jsx .",
"prepare": "husky install"
},
"dependencies": {
"@hermeznetwork/hermezjs": "^2.0.1",
"@lagunovsky/redux-react-router": "^3.2.0",
"axios": "^0.27.2",
"clsx": "^1.1.1",
"ethers": "^5.6.8",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.9.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "^4.0.3",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"serve": "^13.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.11.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.6.2"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx}": "eslint --cache --fix",
"*.{js,jsx,css,md}": "prettier --write"
}
}