-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.1 KB
/
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
34
35
36
{
"name": "fullstack_backend",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"test": "echo \\\"Error: no test specified\\\" && exit 1",
"build:ui": "rm -rf build && cd /Users/eam5hc/projects/fullstack_react/exercises/part2/phonebook && npm run build --prod && cp -r build /Users/eam5hc/projects/fullstack_backend",
"deploy": "git push heroku master",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && npm run deploy",
"logs:prod": "heroku logs --tail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eam5/fullstack_backend.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eam5/fullstack_backend/issues"
},
"homepage": "https://github.com/eam5/fullstack_backend#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.8.1",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.9.1"
},
"devDependencies": {
"nodemon": "^2.0.1"
}
}