-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "dapp-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts",
"deploy:holesky": "hardhat run scripts/deploy.ts --network holesky",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@openzeppelin/contracts": "^5.2.0",
"@reown/appkit": "^1.6.5",
"@reown/appkit-adapter-ethers": "^1.6.5",
"bcryptjs": "^2.4.3",
"ethers": "^6.13.5",
"express": "^4.21.2",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.37.5"
},
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@types/node": "^20.11.24",
"dotenv": "^16.4.7",
"hardhat": "^2.22.1",
"semver": "^7.5.4",
"sequelize-cli": "^6.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}