forked from ammarjussa/Smart-School
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 944 Bytes
/
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
{
"name": "login",
"version": "1.0.0",
"engines": {
"node": "10.15.3",
"npm": "6.9.0"
},
"description": "Smart School Management System",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"concurrently": "^4.1.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"email-templates": "^5.0.5",
"express": "^4.16.3",
"express-session": "^1.16.1",
"mongodb": "^3.1.0-beta4",
"mongodb-autoincrement": "^1.0.1",
"nodemailer": "^6.1.1",
"nodemon": "^1.17.5",
"pug": "^2.0.3"
}
}