-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.91 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
86
87
88
89
90
91
92
93
94
95
{
"name": "token-approval-manager",
"version": "1.3.0",
"private": true,
"dependencies": {
"@emotion/babel-plugin": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.15",
"@mui/x-data-grid": "^4.X.X",
"@safe-global/safe-apps-provider": "^0.18.0",
"@safe-global/safe-apps-react-sdk": "^4.7.0",
"@safe-global/safe-apps-sdk": "^8.1.0",
"@safe-global/safe-core-sdk": "^3.2.1",
"@safe-global/safe-ethers-lib": "^1.1.0",
"@safe-global/safe-react-components": "^2.0.6",
"@safe-global/safe-service-client": "^1.1.2",
"bignumber.js": "^9.0.2",
"ethereum-blockies-base64": "^1.0.2",
"ethers": "^5.6.6",
"mobx": "^6.5.0",
"mobx-react": "^7.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"test": "craco test",
"eject": "craco eject",
"generate-types": "typechain --target=ethers-v5 --out-dir src/contracts './node_modules/@openzeppelin/contracts/build/contracts/ERC20.json'",
"postinstall": "yarn generate-types",
"serve": "npx -y serve build -p 3001"
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"homepage": "./",
"devDependencies": {
"@craco/craco": "^7.0.0",
"@openzeppelin/contracts": "^4.8.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.1.9",
"@typechain/ethers-v5": "^9.0.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.0",
"@types/react": "^17.0.30",
"@types/react-dom": "^17.0.0",
"@types/styled-components": "^5.1.2",
"assert": "^2.0.0",
"babel-eslint": "^10.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^5.9.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"https-browserify": "^1.0.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"os-browserify": "^0.3.0",
"prettier": "^2.4.1",
"process": "^0.11.10",
"react-app-rewire-emotion": "^4.0.0",
"react-scripts": "^5.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typechain": "^7.0.0",
"typescript": "^4.4.4",
"url": "^0.11.0"
},
"resolutions": {
"react-scripts/**/async": ">=2.6.4",
"react-scripts/**/@svgr/webpack": ">=6.5.1",
"react-scripts/**/terser": ">=5.14.2"
}
}