-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 920 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
32
33
{
"name": "phonebook",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:ui": "rm -rf build && cd ../FullStackOpen2021/part2/phonebook && npm run build && cp -r build ../../../FullStackPart3",
"deploy": "git push heroku main",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push && npm run deploy",
"logs:prod": "heroku logs --tail",
"lint": "eslint ."
},
"prettier": {
"semi": false
},
"author": "mariniwa",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"mongoose": "^6.1.2",
"mongoose-unique-validator": "^3.0.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.5.0",
"nodemon": "^2.0.15"
}
}