-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1000 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
{
"name": "backend_e-comarce",
"version": "1.0.0",
"description": "Backend for e-commerce site",
"engines": {
"node": ">=16.0.0"
},
"author": "Manab",
"keywords": [
"express",
"ecommerce",
"backend",
"mongodb"
],
"main": "app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node app.js",
"dev": "cross-env DEBUG=app:* nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "echo 'No build step required'",
"lint": "eslint ."
},
"license": "ISC",
"type": "commonjs",
"dependencies": {
"bcrypt": "^6.0.0",
"config": "^4.0.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"debug": "^4.4.1",
"dotenv": "^17.2.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-session": "^1.18.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.3",
"multer": "^2.0.1",
"cross-env": "^10.1.0"
},
"devDependencies": {
}
}