-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "college-project-sem-1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd all-blog && npm start",
"build_client":"cd all-blog && npm run build",
"build":"npm run build_client",
"install_client":"cd all-blog && npm install",
"install-client": "npm run install_client",
"heroku-postbuild": "npm run install-client && npm run build",
"server":"nodemon app.js",
"start": "node app.js",
"dev": "concurrently \"nodemon app.js \" \"npm run client\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^7.0.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.9",
"mongoose-random": "^0.1.1",
"nodemailer": "^6.7.3",
"otp-generator": "^4.0.0",
"path": "^0.12.7"
}
}