-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
{
"name": "0xetherscan",
"version": "0.3.3",
"private": true,
"homepage": "https://0xetherscan.io",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@monaco-editor/react": "^4.3.1",
"@mui/icons-material": "^5.2.0",
"@mui/lab": "^5.0.0-alpha.56",
"@mui/material": "^5.1.1",
"@reduxjs/toolkit": "^1.5.1",
"history": "5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.0",
"react-router-dom": "6",
"react-scripts": "4.0.3",
"react-split-pane": "^0.1.92",
"redux-localstorage": "v1.0.0-rc4",
"redux-localstorage-filter": "^0.1.1",
"typescript": "~4.1.5"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"@types/redux-localstorage": "^1.0.8",
"@types/redux-localstorage-filter": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"unittest": "react-scripts test",
"eject": "react-scripts eject",
"fix": "run-s fix:*",
"fix:prettier": "prettier --write .",
"fix:lint": "eslint src --ext .ts --ext .tsx --fix",
"test": "run-s test:*",
"test:lint": "eslint src --ext .ts --ext .tsx",
"test:prettier": "prettier --check .",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"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,ts,tsx,md,yml,toml,json}": [
"prettier --write",
"prettier --check"
],
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"eslint"
]
}
}