forked from rifathm/hostel-registration-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.28 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
36
37
38
39
40
{
"name": "hostel-registration-system",
"version": "1.0.0",
"description": "Hostel Registration System for University of Jaffna",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build --prefix client && node index.js",
"dev:server": "nodemon index.js --ignore client",
"dev:client": "npm start --prefix client",
"dev": "concurrently -n server,client -c yellow,cyan \"npm run dev:server\" \"npm run dev:client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rifathm/hostel-registration-system.git"
},
"author": "Rifathm",
"license": "ISC",
"bugs": {
"url": "https://github.com/rifathm/hostel-registration-system/issues"
},
"homepage": "https://github.com/rifathm/hostel-registration-system#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.2",
"express-validator": "^6.8.0",
"google-map-react": "^2.1.9",
"mongoose": "^5.12.3",
"multer": "^1.4.2",
"nodemailer": "^6.6.1",
"nodemailer-express-handlebars": "^4.0.0",
"nodemon": "^2.0.6"
},
"proxy": "http://localhost:5000"
}