-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "devault",
"description": "A Blockchain-based self-hosted decentralized encrypted cloud storage",
"version": "0.3.0",
"private": true,
"license": "GPLv3",
"author": {
"name": "Abd El-Twab M. Fakhry",
"email": "[email protected]"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build2": "next build && next export",
"start": "next start",
"test": "jest",
"coverage": "jest --coverage",
"deploy": "./scripts/deploy.sh",
"md:fix": "remark . --quiet --frail --output",
"sol:lint": "solhint -f table contracts/**/*.sol",
"sol:fmt": "prettier --write contracts/**/*.sol",
"sol:test": "npx hardhat test",
"sol:test:coverage": "npx hardhat coverage",
"lint": "next lint",
"fix": "npm run md:fix && npm run sol:fmt && standard --fix"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"crypto-js": "^4.1.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"ipfs-http-client": "^57.0.3",
"it-all": "^1.0.6",
"next": "^12.2.3",
"react": "^18.1.0",
"react-dom": "^18.2.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-brands-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"bootstrap": "^5.2.0",
"chai": "^4.3.6",
"dependency-cruiser": "^11.12.0",
"dotenv": "^16.0.1",
"eslint": "^8.20.0",
"eslint-config-next": "^12.2.3",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"remark-cli": "^11.0.0",
"remark-lint-emphasis-marker": "^3.1.1",
"remark-lint-list-item-indent": "^3.1.1",
"remark-lint-strong-marker": "^3.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"solidity-coverage": "^0.7.0"
},
"remarkConfig": {
"settings": {
"emphasis": "*",
"strong": "*"
},
"plugins": [
"remark-preset-lint-consistent",
"remark-preset-lint-recommended",
[
"remark-lint-list-item-indent",
"tab-size"
],
[
"remark-lint-emphasis-marker",
"*"
],
[
"remark-lint-strong-marker",
"*"
]
]
}
}