-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.56 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.56 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
{
"name": "DAFE-core",
"version": "1.0.0",
"description": "Decentralized Autonomous Financial Ecosystem (DAFE) Core",
"main": "index.js",
"scripts": {
"test": "jest",
"test:contracts": "hardhat test tests/contracts",
"test:components": "react-scripts test --watchAll=false",
"test:utils": "jest tests/utils",
"lint": "eslint .",
"build": "react-scripts build",
"start": "react-scripts start",
"deploy": "hardhat run scripts/deploy.js --network <network_name>"
},
"dependencies": {
"ethers": "^5.7.0", // Updated to the latest version
"react": "^18.2.0", // Updated to the latest version
"react-dom": "^18.2.0", // Updated to the latest version
"react-scripts": "5.0.1", // Updated to the latest version
"axios": "^0.27.2", // Updated to the latest version
"web3": "^1.8.0" // Updated to the latest version
},
"devDependencies": {
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"chai": "^4.3.6", // Updated to the latest version
"eslint": "^8.0.0", // Updated to the latest version
"jest": "^29.0.0", // Updated to the latest version
"hardhat": "^2.12.0", // Updated to the latest version
"@testing-library/react": "^13.0.0", // Updated to the latest version
"@testing-library/jest-dom": "^6.0.0", // Updated to the latest version
"dotenv": "^16.0.0" // Updated to the latest version
},
"keywords": [
"decentralized",
"finance",
"blockchain",
"smart-contracts",
"react"
],
"author": "KOSASIH",
"license": "MIT"
}