-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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
{
"name": "referral-management-system",
"version": "1.0.0",
"description": "Student referral management system with MongoDB backend",
"main": "server.js",
"scripts": {
"start": "node server.js",
"build": "echo 'No build step required for Node.js backend'",
"dev": "nodemon server.js",
"seed:admin": "node utils/seedAdmin.js",
"seed:students": "node utils/seedStudents.js",
"seed:all": "npm run seed:admin && npm run seed:students",
"reset:admin": "node resetAdmin.js"
},
"keywords": [
"referral",
"management",
"mongodb",
"express",
"guidance",
"student-management"
],
"author": "Kwek Kwek na mainit",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csv-parser": "^3.2.0",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.19.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^7.0.10",
"xlsx": "^0.18.5"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"type": "commonjs"
}