-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.03 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
{
"name": "phonebook-backend",
"version": "0.0.1",
"description": "This repository is dedicated to part 3 of the full stack open course by University of Helsinki",
"main": "index.js",
"scripts": {
"build:ui": "rm -rf build && cd ../full-stack-open/part2/phonebook && npm run build && cp -r build ../../.././fullStackOpen-part3",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push",
"lint": "eslint .",
"dev": "nodemon index.js",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Kartikay",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^7.1.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^2.0.22"
}
}