-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.84 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "nft-burner-ui",
"version": "0.2.0",
"private": true,
"node": "v18",
"engines": {
"npm": "please-use-yarn",
"node": "=18"
},
"engineStrict": true,
"scripts": {
"audit": "yarn audit --groups dependencies",
"start": "craco start",
"start:prod": "REACT_APP_ENVIRONMENT=production craco start",
"build": "NODE_OPTIONS=--max_old_space_size=4096 REACT_APP_ENVIRONMENT=production craco build",
"test": "craco test",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"eject": "react-scripts eject"
},
"resolutions": {
"crypto-js": "4.2.0",
"@babel/traverse": "7.23.2",
"browserify-sign": "4.2.2",
"styled-components": "^5",
"axios": "^1.6.0",
"@mysten/sui.js": "^0.51.2",
"@solana/web3.js": "1.88.0"
},
"dependencies": {
"@avernikoz/nft-sdk": "2.1.7",
"@mysten/dapp-kit": "0.12.9",
"@mysten/sui.js": "0.51.2",
"@mysten/wallet-standard": "0.8.11",
"@mysten/zklogin": "0.5.2",
"@mysten/zksend": "0.4.3",
"@rainbow-me/rainbowkit": "1.1.1",
"@sentry/browser": "7.84.0",
"@sentry/react": "7.84.0",
"@solana/wallet-adapter-base": "0.9.23",
"@solana/wallet-adapter-react": "0.15.35",
"@solana/wallet-adapter-react-ui": "0.9.35",
"@solana/wallet-adapter-wallets": "0.19.22",
"@solana/web3.js": "1.78.5",
"@tanstack/react-query": "5.29.2",
"@wagmi/core": "1.4.7",
"alchemy-sdk": "2.10.1",
"dat.gui": "0.7.9",
"ethers": "6.7.1",
"normalize.css": "8.0.1",
"primeicons": "6.0.1",
"primereact": "10.0.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga4": "2.1.0",
"react-lazyload": "3.2.0",
"react-query": "3.39.3",
"react-virtualized-auto-sizer": "1.0.20",
"react-window": "1.8.10",
"styled-components": "6.1.0",
"swr": "2.2.4",
"viem": "1.19.3",
"wagmi": "1.3.8",
"web-vitals": "2.1.4"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@craco/craco": "^7.1.0",
"@craco/types": "^7.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/dat.gui": "^0.7.10",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.52",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/react-lazyload": "^3.2.3",
"@types/react-virtualized": "^9.21.27",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^27.4.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^3.0.3",
"react-scripts": "5.0.1",
"typescript": "^5.2.2"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
".eslintrc.js"
]
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}