-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "test-initial-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@kadena/client": "^0.1.10",
"@solana/web3.js": "^1.76.0",
"@testing-library/dom": "^5.6.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@walletconnect/core": "^2.11.0",
"@walletconnect/encoding": "^1.0.2",
"@walletconnect/sign-client": "^2.11.0",
"@walletconnect/types": "^2.11.0",
"@walletconnect/utils": "^2.11.0",
"@web3modal/standalone": "^2.4.3",
"axios": "^1.6.3",
"eth-sig-util": "^2.5.4",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "4.0.3",
"web3": "^1.10.4"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-proposal-logical-assignment-operators"
]
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"babel-loader": "^8.3.0",
"customize-cra": "^1.0.0",
"react-app-rewired": "^2.2.1"
}
}