-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 857 Bytes
/
package.json
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
{
"author": "Sagar Gupta",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"concurrently": "^8.0.0",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^8.0.0",
"prettier": "^3.0.3",
"validation": "^0.0.1"
},
"description": "Contact Managing Application",
"devDependencies": {
"nodemon": "^3.0.0"
},
"license": "ISC",
"main": "index.js",
"name": "contact-manager",
"scripts": {
"format": "prettier --write .",
"start": "nodemon index.js",
"dev": "concurrently \"npm run start\" \"cd client && npm start\"",
"frontend-build": "cd client && npm run build",
"frontend-install": "cd client && npm install",
"build": "npm install && npm run frontend-install && npm run frontend-build"
},
"version": "1.0.0"
}