-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 821 Bytes
/
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
{
"name": "phonebook",
"version": "0.1.0",
"description": "A phonebook application",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/zelda4669/phonebook.git"
},
"author": "NKF",
"license": "ISC",
"bugs": {
"url": "https://github.com/zelda4669/phonebook/issues"
},
"homepage": "https://github.com/zelda4669/phonebook#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"mongoose": "^6.6.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-plugin-react": "^7.31.8",
"nodemon": "^2.0.19"
}
}