-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 854 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
{
"name": "phonebookbackend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"git": "git add . && git commit -m ",
"push": "git push origin master",
"build:ui": "rm -r build && cd /home/abhishek/FullStack/part2/thephonebook/ && npm run build --prod && cp -r build /home/abhishek/FullStack/part3/phonebookBackend",
"deploy": "git push heroku master",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.7.13",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.9.1"
},
"devDependencies": {
"eslint": "^6.7.2",
"nodemon": "^2.0.1"
}
}