-
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": "puhelinluettelo_backend",
"version": "1.0.0",
"description": "fs2020 exercise",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build:ui": "rm -rf build && cd ../fs2020/osa2/puhelinluettelo && npm run build --prod && cp -r build ../../../fs2020_osa3",
"deploy": "git push heroku master",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push && npm run deploy",
"logs:prod": "heroku logs --tail",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/muikku/fs2020_osa3.git"
},
"author": "muikku",
"license": "ISC",
"bugs": {
"url": "https://github.com/muikku/fs2020_osa3/issues"
},
"homepage": "https://github.com/muikku/fs2020_osa3#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.7",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodemon": "^2.0.2"
}
}