-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (34 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (34 loc) · 1.03 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": "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 ../part2/thephonebook && npm run build --prod && cp -r build ../../fullstackOpenPart3",
"deploy": "git push heroku master",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push && npm run deploy",
"logs:prod": "heroku logs --tail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lennartschepers/fullstackOpenPart3.git"
},
"author": "lennart schepers",
"license": "MIT",
"bugs": {
"url": "https://github.com/lennartschepers/fullstackOpenPart3/issues"
},
"homepage": "https://github.com/lennartschepers/fullstackOpenPart3#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"cors": "^2.8.5",
"morgan": "^1.9.1"
},
"devDependencies": {
"nodemon": "^1.19.1"
}
}