-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.41 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
41
42
43
44
45
{
"name": "devconnector",
"version": "1.0.0",
"description": "Social network for developers",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"db": "start mongod --dbpath 'D:/ExamSystem/ExamSystemDatabase'",
"dev": "concurrently -n Server,Client,DB \"npm run server\" \"npm run client\" \"npm run db\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Brad Traversy",
"license": "MIT",
"dependencies": {
"@reach/router": "^1.3.4",
"@testing-library/jest-dom": "^5.11.8",
"@testing-library/react": "^11.2.2",
"@wmik/use-media-recorder": "^1.0.0-alpha.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"concurrently": "^3.5.1",
"express": "^4.16.3",
"gravatar": "^1.6.0",
"jshint": "^2.12.0",
"jsonwebtoken": "^8.2.0",
"mongodb": "^3.6.3",
"mongoose": "^5.0.12",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react-media-recorder": "^1.4.0",
"react-video-recorder": "^3.17.1",
"reactstrap": "^8.8.1",
"record-screen": "^3.18.0",
"typescript": "^4.1.3",
"use-screen-recording": "^2.0.0",
"validator": "^9.4.1",
"videojs-record": "^3.9.0"
},
"devDependencies": {
"nodemon": "^1.17.3"
}
}