-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "agrichain",
"version": "1.0.0",
"description": "Blockchain-based agricultural marketplace connecting farmers and consumers",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"smart-contracts": "cd smart-contracts && npm run",
"frontend": "cd frontend && npm run",
"backend": "cd backend && npm run",
"dev": "concurrently \"npm run frontend dev\" \"npm run backend dev\"",
"lint": "eslint .",
"install-all": "npm install && cd frontend && npm install && cd ../backend && npm install && cd ../smart-contracts && npm install"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^5.2.0",
"concurrently": "^8.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ethers": "^5.7.2",
"hardhat": "^2.22.18",
"husky": "^8.0.3"
},
"devDependencies": {
"eslint": "^8.40.0",
"prettier": "^2.8.8"
},
"keywords": [],
"author": "",
"license": "ISC"
}