-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.55 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
53
{
"name": "course-registration",
"version": "1.0.0",
"description": "Course Select ",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepakh2810/Course-Registration.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/deepakh2810/Course-Registration/issues"
},
"homepage": "https://github.com/deepakh2810/Course-Registration#readme",
"dependencies": {
"@pusher/chatkit": "^0.7.18",
"@pusher/chatkit-client": "^1.2.0",
"@pusher/chatkit-server": "^1.0.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"concurrently": "^4.0.1",
"cors": "^2.8.4",
"ejs": "^2.6.1",
"express": "^4.16.3",
"gravatar": "^1.6.0",
"jQuery": "^1.7.4",
"jquery": "^3.3.1",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.3.1",
"nodemailer": "^4.6.8",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-google-plus-token": "^2.1.0",
"passport-jwt": "^4.0.0",
"popper.js": "^1.14.4",
"pusher-chatkit-server": "^0.12.0",
"randomstring": "^1.1.5",
"validator": "^10.8.0"
},
"devDependencies": {
"nodemon": "^1.18.4"
}
}