-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
102 lines (102 loc) · 3.45 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
96
97
98
99
100
101
102
{
"name": "safe-airdrop",
"version": "2.6.0",
"license": "MIT",
"private": true,
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test --watchAll=false",
"lint": "eslint --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"coverage": "yarn test --coverage",
"eject": "craco eject",
"fmt": "prettier --check '**/*.ts'",
"fmt:write": "prettier --write '**/*.ts'",
"prepare": "husky install",
"generate-types": "typechain --target=ethers-v5 --out-dir src/contracts './node_modules/@openzeppelin/contracts/build/contracts/ERC20.json' './customabis/ERC721.json' './node_modules/@openzeppelin/contracts/build/contracts/ERC1155.json' './node_modules/@openzeppelin/contracts/build/contracts/ERC165.json'",
"postinstall": "yarn generate-types",
"serve": "npx -y serve build -p 3001",
"update-safe-apps-sdk": "yarn add @safe-global/safe-apps-provider@latest @safe-global/safe-apps-react-sdk@latest @safe-global/safe-apps-sdk"
},
"dependencies": {
"@emotion/cache": "^11.10.1",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.14.11",
"@mui/material": "^5.14.11",
"@mui/styles": "^6.1.1",
"@openzeppelin/contracts": "^5.0.2",
"@reduxjs/toolkit": "^2.2.5",
"@safe-global/safe-apps-provider": "^0.18.3",
"@safe-global/safe-apps-react-sdk": "^4.7.1",
"@safe-global/safe-apps-sdk": "^9.0.0",
"@safe-global/safe-gateway-typescript-sdk": "^3.13.2",
"@safe-global/safe-react-components": "2.0.5",
"@types/jest": "^29.5.12",
"ace-builds": "^1.15.0",
"bignumber.js": "^9.1.2",
"ethers": "^5.7.2",
"honeyswap-default-token-list": "^3.1.1",
"lodash.debounce": "^4.0.8",
"react": "^17.0.2",
"react-ace": "^10.1.0",
"react-csv-reader": "^4.0.0",
"react-dom": "^17.0.2",
"react-dropzone": "^14.2.3",
"react-papaparse": "^4.4.0",
"react-redux": "^8.0.1",
"react-svg": "^16.1.34",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.9",
"swr": "^2.2.5",
"tslib": "^2.6.1",
"typescript": "~5.5.2"
},
"devDependencies": {
"@craco/craco": "^7.0.0",
"@simbathesailor/use-what-changed": "^2.0.0",
"@svgr/webpack": "^8.0.1",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^8.0.1",
"@typechain/ethers-v5": "^7.1.2",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^20.5.7",
"@types/react": "^17.0.39",
"@types/react-dom": "^18.0.3",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"babel-eslint": "^10.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"node-polyfill-webpack-plugin": "^2.0.1",
"postcss-normalize": "^10.0.1",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"react-scripts": "^5.0.1",
"typechain": "^5.2.0"
},
"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": "./"
}