-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "blog",
"version": "1.0.0",
"description": "A blog page",
"main": "server.js",
"scripts": {
"clients-install": "npm install --prefix clients",
"start": "node server.js",
"server": "nodemon server.js",
"clients": "npm start --prefix clients",
"dev": "concurrently \"npm run server\" \"npm run clients\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix clients && npm run build --prefix clients"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GodsonAddy/blog.git"
},
"author": "GodsonAddy",
"license": "ISC",
"bugs": {
"url": "https://github.com/GodsonAddy/blog/issues"
},
"homepage": "https://github.com/GodsonAddy/blog#readme",
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"cheerio": "^1.0.0-rc.12",
"concurrently": "^7.3.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"google-auth-library": "^8.1.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.8.1",
"mongoose": "^6.5.2",
"nodemailer": "^6.7.8",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.19"
}
}