-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 891 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 891 Bytes
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
{
"name": "walletbackend",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"dev": "nodemon app.js",
"start": "node app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@truffle/hdwallet-provider": "^2.1.7",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"buffer": "^6.0.3",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"ethers": "^6.0.8",
"express": "^4.18.2",
"joi": "^17.7.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.9.1",
"nodemailer": "^6.9.1",
"nodemailer-smtp-transport": "^2.7.4",
"web3": "^1.8.2",
"winston": "^3.8.2"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"nodemon": "^2.0.20"
}
}