-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 KB
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
{
"name": "frontend",
"version": "0.0.1",
"description": "This repo includes the frontend of the project Dochain.",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dochain1/frontend.git"
},
"keywords": [],
"author": "Bárbaro Javier Valmaseda <hello@bjvalmaseda.com> (https://bjvalmaseda.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dochain1/frontend/issues"
},
"homepage": "https://github.com/Dochain1/frontend#readme",
"dependencies": {
"@chakra-ui/icons": "^2.0.9",
"@chakra-ui/react": "^2.3.1",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@ethersproject/providers": "^5.7.0",
"@metamask/eth-sig-util": "^4.0.1",
"@web3-react/core": "^6.1.9",
"@web3-react/injected-connector": "^6.0.7",
"@web3-react/metamask": "^8.0.0-beta.0",
"axios": "^0.27.2",
"ethereumjs-utils": "^5.2.5",
"ethers": "^5.7.0",
"framer-motion": "^6.5.1",
"next": "^12.2.5",
"openpgp": "^5.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"web3": "^1.7.5",
"web3-react": "^5.0.5"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.0",
"husky": "^8.0.1",
"prettier": "^2.7.1"
},
"husky": {
"hooks": {
"pre-commit": "npm prettier -w ."
}
}
}