-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 974 Bytes
/
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
{
"name": "demo",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@2pi-network/js-sdk": "^0.2.0-beta.33",
"@coinbase/wallet-sdk": "^3.3.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@gnosis.pm/safe-apps-web3modal": "^13.0.1",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.8.6",
"@walletconnect/web3-provider": "^1.7.8",
"bignumber.js": "^9.0.2",
"next": "12.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"web3modal": "^1.9.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"eslint": "8.18.0",
"eslint-config-next": "12.2.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-testing-library": "^5.5.1",
"jest": "^28.1.2",
"jest-fetch-mock": "^3.0.3"
}
}