-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"name": "SchoolManagementSystem",
"version": "1.0.0",
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"start": "babel-node backend/server",
"server": "nodemon backend/server",
"client": "npm run dev --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node backend/seeder",
"data:destroy": "node backend/seeder -d",
"background": "nodemon backend/backgroundServices/index",
"test": "jest --watchAll"
},
"author": "Robinson Ngecu",
"license": "MIT",
"dependencies": {
"axios": "^1.6.5",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.6.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-async-handler": "^1.1.4",
"handlebars": "^4.7.7",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^9.1.3",
"mongoose": "^6.8.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"ngrok": "^5.0.0-beta.2",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.3",
"react-icons": "^4.10.1",
"request": "^2.88.2",
"useragent": "^2.3.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.7",
"concurrently": "^5.3.0",
"jest": "^29.7.0",
"nodemon": "^2.0.4"
}
}