-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 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
49
50
{
"name": "codehub",
"version": "1.0.0",
"description": "An online community for developers",
"main": "index.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"clientinstall": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vic30004/codehub.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vic30004/codehub/issues"
},
"homepage": "https://github.com/vic30004/codehub#readme",
"dependencies": {
"animate.css": "^3.7.2",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.3",
"colors": "^1.4.0",
"config": "^3.2.4",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"gravatar": "^1.8.0",
"inspirational-quotes": "^1.0.8",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.7.10",
"morgan": "^1.9.1",
"react-calendar": "^2.19.2",
"request": "^2.88.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"concurrently": "^5.0.0",
"nodemon": "^1.19.4"
}
}