-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.27 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
{
"name": "hypeday-react",
"private": true,
"version": "0.1.1",
"type": "module",
"files": [
"dist"
],
"main": "./dist/hypeday-react.umd.cjs",
"module": "./dist/hypeday-react.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/hypeday-react.js",
"require": "./dist/hypeday-react.umd.cjs"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"build": "npm run lint && tsc && vite build",
"preview": "vite preview",
"lint": "eslint --fix --max-warnings=0 'src/**/*.{js,jsx,ts,tsx}'"
},
"peerDependencies": {
"react": "^16.8.0 || 17 || 18",
"react-dom": "^16.8.0 || 17 || 18"
},
"devDependencies": {
"@types/node": "^16.11.56",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-modal": "^3.13.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-visualizer": "^5.8.0",
"simple-pre-commit": "^1.2.1",
"typescript": "^4.8.2",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.4.1",
"vite-plugin-ngmi-polyfill": "^0.0.2"
},
"engines": {
"node": "16"
},
"simple-pre-commit": "npx lint-staged",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix --max-warnings=0"
]
},
"dependencies": {
"@coinbase/wallet-sdk": "^3.6.2",
"@ethersproject/basex": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@solana-mobile/wallet-adapter-mobile": "^0.9.4",
"@solana/wallet-adapter-base": "^0.9.18",
"@solana/wallet-adapter-react": "^0.15.20",
"@solana/wallet-adapter-react-ui": "^0.9.18",
"@solana/wallet-adapter-wallets": "^0.19.1",
"@solana/web3.js": "^1.63.1",
"@walletconnect/web3-provider": "^1.8.0",
"jwt-decode": "^3.1.2",
"react-modal": "^3.16.1",
"web3modal": "^1.9.10"
}
}