-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.11 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
{
"name": "nb-sandbox-frontend",
"author": "Nahmii AS",
"version": "0.1.0",
"license": "Apache-2.0",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.10",
"@mui/x-data-grid": "^5.17.7",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"base-64": "^1.0.0",
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"lodash": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hooks-global-state": "^2.0.0",
"react-intl": "^6.2.1",
"react-perfect-scrollbar": "^1.5.8",
"react-router-dom": "^6.4.2",
"react-scripts": "^5.0.1",
"react-toastify": "^9.0.8",
"runtime-env-cra": "^0.2.4",
"simplebar-react": "^2.4.3",
"sweetalert2": "^11.6.0"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"lint:check": "npx eslint --max-warnings=0 --ext=.js src",
"lint:fix": "npx eslint --fix --ext=.js src",
"prepare": "husky install",
"pretest": "npm run format",
"start": "NODE_ENV=development runtime-env-cra --config-name=./public/runtime-env.js && react-scripts start",
"start-windows": "cross-env NODE_ENV=development runtime-env-cra --config-name=./public/runtime-env.js && react-scripts start",
"test": "react-scripts test"
},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.1",
"prettier": "^2.7.1"
}
}