-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.14 KB
/
package.json
File metadata and controls
35 lines (35 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
{
"name": "puhelinluettelo_backend",
"version": "0.1.0",
"description": "backend for puhelinluettelo frontend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"build:ui": "rm -rf build && cd ../../part2/fullstackOpen2019Part2Puhelinluettelo && npm run build --prod && cp -r build ../../part3/fullstackOpen2019Part3",
"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 -t",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Teemu Helenius",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.8.9",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.9.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"nodemon": "^2.0.2"
}
}