-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "web3-backend",
"version": "1.0.0",
"description": "Backend API for Web3 application",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix"
},
"keywords": ["web3", "blockchain", "express", "api"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"dotenv": "^16.3.1",
"mongoose": "^8.0.3",
"web3": "^4.3.0",
"ethers": "^6.8.1",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"compression": "^1.7.4"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.0",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}