-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 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
{
"name": "devkonector",
"version": "1.0.0",
"description": "A social connector for developers",
"main": "server.js",
"scripts": {
"client": "npm start --prefix client",
"client-install": "cd client && yarn install",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server",
"server": "nodemon server",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"dbon": "sudo systemctl start mongod",
"dboff": "sudo systemctl stop mongod",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phavor/devkonector.git"
},
"keywords": [
"social",
"community",
"connector"
],
"author": "Favour George <phavorsparks@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/phavor/devkonector/issues"
},
"homepage": "https://github.com/phavor/devkonector#readme",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.18.3",
"concurrently": "4.1.0",
"express": "4.16.4",
"gravatar": "1.8.0",
"jsonwebtoken": "8.5.0",
"moment": "2.24.0",
"mongoose": "5.4.14",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"validator": "10.11.0"
},
"devDependencies": {
"nodemon": "1.18.10"
}
}