-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.08 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
33
34
35
{
"name": "elibrary-system",
"version": "1.0.0",
"description": "An Application for Managing electronic library system in FUTO",
"main": "server.js",
"type": "module",
"scripts": {
"build-client": "cd client && npm run build",
"install-client": "cd client && npm install",
"postbuild": "npm run install-client && npm run build-client",
"server": "nodemon server --ignore client",
"start-server": "node server --ignore client",
"client": "npm run dev --prefix client",
"start-dev": "concurrently --kill-others-on-fail \" npm run server \" \" npm run client",
"start": "node server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongoose": "^6.8.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.20",
"validator": "^13.7.0"
}
}