-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "fso-part3-backend",
"version": "0.0.1",
"description": "[Full Stack Open 2021](https://fullstackopen.com/en/ ) course exercises.",
"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 ../front && npm run build && cp -r build ../back",
"deploy": "git push heroku master",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push origin master && npm run deploy",
"logs:prod": "heroku logs --tail",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/pablo-maff/Full-Stack-Open-2021.git"
},
"keywords": [
"backend",
"node",
"express"
],
"author": "Pablo Maffioli",
"license": "MIT",
"bugs": {
"url": "https://github.com/pablo-maff/Full-Stack-Open-2021/issues"
},
"homepage": "https://github.com/pablo-maff/Full-Stack-Open-2021#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.2",
"mongoose": "^6.1.8",
"morgan": "^1.10.0"
},
"devDependencies": {
"dotenv": "^14.3.2",
"eslint": "^8.8.0",
"nodemon": "^2.0.15"
}
}