-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "novus-backend",
"version": "1.0.0",
"description": "Backend API for NOVUS Consultation Booking System with Admin Dashboard",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"create-db": "node scripts/createDatabase.js",
"init-db": "node scripts/initDb.js",
"setup-db": "npm run create-db && npm run init-db",
"create-admin": "node scripts/createAdmin.js",
"setup": "npm run setup-db && npm run create-admin",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"booking",
"consultation",
"api",
"nodejs",
"express",
"postgresql",
"admin-dashboard"
],
"author": "NOVUS Team",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"pg": "^8.11.3",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"nodemailer": "^6.9.7",
"express-validator": "^7.0.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/novus-backend.git"
},
"bugs": {
"url": "https://github.com/yourusername/novus-backend/issues"
},
"homepage": "https://github.com/yourusername/novus-backend#readme"
}