-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
39
40
41
42
43
44
{
"name": "fso-part3",
"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 ./phonebook-frontend/ && npm run build --prod && cp -r build ../.",
"add:repo": "git add . && git commit -m uibuild && git push heroku master",
"deploy": "git push heroku master",
"deploy:full": "npm run build:ui && cd - && git add . && git commit -m uibuild && git push && npm run deploy",
"logs:prod": "heroku logs --tail",
"lint": "node_modules/.bin/eslint ./**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EiTamOnya/FSO-part3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/EiTamOnya/FSO-part3/issues"
},
"homepage": "https://github.com/EiTamOnya/FSO-part3#readme",
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^5.12.10",
"mongoose-unique-validator": "^2.0.4",
"morgan": "^1.10.0",
"prettier": "^2.4.1"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.7"
},
"engines": {
"node": "14.x"
}
}