-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.57 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
{
"name": "sdk-workshop",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"typegen": "typechain --target=ethers-v6 --input-dir ./src/abi --out-dir ./src/abi",
"lint": "prettier --check . && eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"format": "prettier --write . && yarn eslint --fix ."
},
"dependencies": {
"@noble/ed25519": "^2.1.0",
"@orderly.network/types": "^1.5.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.0.5",
"@safe-global/safe-apps-provider": "^0.18.2",
"@safe-global/safe-apps-sdk": "^9.0.0",
"@web3-onboard/gnosis": "^2.2.2",
"@web3-onboard/injected-wallets": "^2.10.17",
"@web3-onboard/react": "^2.8.17",
"@web3-onboard/walletconnect": "^2.5.5",
"ethers": "^6.12.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-pattern": "^5.2.0"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.1",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^8",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"prettier": "^3.2.5",
"typechain": "^8.3.2",
"typescript": "5.4",
"vite": "^5.2.11"
}
}