-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 863 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 863 Bytes
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
{
"name": "phonebook",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node api/index.js",
"dev": "nodemon api/index.js",
"vercel-build": "echo Hello, world",
"build:ui": "rm -rf dist && cd ../fullstackopen-solutions/part2/phonebook && npm run build && cp -r dist ../../../fullstackopen-part3",
"debug": "nodemon --inspect api/index.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mohamed Hossam",
"license": "MIT",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.5.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@stylistic/eslint-plugin-js": "^2.6.3",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"nodemon": "^3.1.4"
}
}