-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.14 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
{
"scripts": {
"dev": "next",
"build": "CI= next build",
"start": "next start",
"lint": "eslint ./",
"lint:fix": "eslint --fix \"./**/*.{js,jsx}\"",
"test": "jest",
"testw": "jest --watch",
"testc": "jest --coverage --verbose",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@ant-design/cssinjs": "^1.16.2",
"@ant-design/icons": "^5.2.6",
"@autonolas/frontend-library": "^0.4.21",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@wagmi/core": "^1.4.1",
"@web3inbox/core": "^0.0.22",
"@web3inbox/widget-react": "^0.6.25",
"@web3modal/ethereum": "^2.7.1",
"@web3modal/react": "^2.7.1",
"antd": "^5.9.0",
"cors": "^2.8.5",
"ethers": "^6.11.1",
"ipfs": "^0.63.5",
"ipfs-http-client": "^57.0.3",
"ipfs-only-hash": "^4.0.0",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.4.1",
"multiformats": "^9.7.1",
"next": "^13.4.19",
"next-redux-wrapper": "^8.1.0",
"node-fetch": "2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"styled-components": "^6.0.7",
"use-deep-compare-effect": "^1.8.1",
"uuid": "^9.0.1",
"viem": "^0.3.35",
"wagmi": "^1.4.1",
"web3": "^1.7.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.11",
"@next/bundle-analyzer": "^13.4.16",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"babel-plugin-import": "^1.13.8",
"babel-plugin-inline-react-svg": "^2.0.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.4.19",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"redux-mock-store": "^1.5.4"
}
}