-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 867 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 867 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
39
40
41
42
{
"name": "mechanic-app-api",
"version": "2.0.0",
"description": "Secure REST API for Mechanic App with JWT authentication",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"seed": "node seed.js"
},
"keywords": [
"mechanic",
"api",
"rest",
"jwt",
"nodejs",
"express",
"mongodb"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.3",
"multer": "^2.1.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}