-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 972 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 972 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
43
44
{
"name": "e-store-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node src/server.js",
"dev": "NODE_ENV=development nodemon src/server.js",
"build": "echo \"No build step for backend\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"nodejs",
"express",
"mongodb",
"mongoose",
"api",
"multilang",
"multicurrency",
"cloudinary"
],
"author": "agent_bagel",
"license": "ISC",
"description": "Backend API",
"dependencies": {
"bcrypt": "^6.0.0",
"cloudinary": "^2.7.0",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.18.1",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"nodemon": "^3.1.10"
}
}