-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
37
38
{
"name": "fullstackopen-part3",
"version": "1.0.0",
"description": "Exercises for part3 of Full Stack open 2020.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --fix",
"build:ui": "rm -rf build && cd ./react-ui && npm run build --prod && cp -r build ../",
"deploy": "git push heroku main",
"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/francoromanol/fullstackopen-part3.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/francoromanol/fullstackopen-part3/issues"
},
"homepage": "https://github.com/francoromanol/fullstackopen-part3#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.15",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"nodemon": "^2.0.7"
}
}