-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 764 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 764 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
{
"name": "puhelinluettelo-backend",
"version": "1.0.0",
"description": "Backend for puhelinluettelo-app",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:ui": "rm -rf dist && cd ../fullstackopen/osa2/puhelinluettelo && npm run build && cp -r dist ../../../fullstackopen-pt3",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push"
},
"author": "ranven",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^7.5.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.49.0",
"nodemon": "^3.0.1"
}
}