-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
37
38
{
"name": "phonebook",
"version": "1.0.0",
"description": "\"# part3FSO\"",
"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/part2/phonebook && rm -rf build && npm run build && cp -r build ../../../part3",
"deploy": "git push heroku HEAD: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/NooBat/part3FSO.git"
},
"author": "Nguyen Tran Khoi",
"license": "ISC",
"bugs": {
"url": "https://github.com/NooBat/part3FSO/issues"
},
"homepage": "https://github.com/NooBat/part3FSO#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"mongoose": "^6.2.4",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"nodemon": "^2.0.15"
}
}