-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 942 Bytes
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": "fullstackopen_backend",
"version": "0.0.1",
"description": "Phonebook Application Backend from FullStackOpen course",
"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 ~/FullStackOpen/part3/phonebook/ && npm run build && cp -r build ~/FullStackOpen_Backend",
"deploy": "fly deploy",
"deploy:full": "npm run build:ui && npm run deploy",
"logs:prod": "fly logs",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "github/zbynio414/FullStackOpen_Backend"
},
"author": "Zbigniew Kowalkowski",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^6.9.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.34.0",
"nodemon": "^2.0.20"
}
}