-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "prepo-swap",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"hardhat:dev": "hardhat node",
"hardhat:scripts:fund0": "hardhat run scripts/fundAccount.js --network localhost",
"test": "jest",
"test:watch": "jest --watch",
"lint": "next lint"
},
"dependencies": {
"@apollo/client": "^3.4.16",
"@emotion/cache": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.4",
"@mui/lab": "^5.0.0-alpha.53",
"@mui/material": "^5.0.4",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"deepmerge": "^4.2.2",
"ethers": "^5.5.1",
"graphql": "^15.6.1",
"lodash": "^4.17.21",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-query": "^3.27.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/lodash": "^4.14.176",
"@types/react": "17.0.31",
"@web3-react/types": "^6.0.7",
"babel-jest": "^27.3.1",
"eslint": "^8.0.1",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.2.0",
"hardhat": "^2.6.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"react-test-renderer": "^17.0.2",
"typescript": "4.4.4"
}
}