-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1007 Bytes
/
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
{
"name": "blog-creator",
"version": "1.0.0",
"engines": {
"node": "16.18.1"
},
"description": "A blog creator application built with the MERN stack.",
"main": "server.js",
"scripts": {
"start": "node server/server.js",
"devstart": "nodemon server/server.js",
"client": "yarn start --prefix client",
"dev-front": "concurrently \"yarn run devstart\" \"yarn run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "https://github.com/Earth-Hominid/Blog-Creator-API.git"
},
"author": "Chris Doll",
"license": "MIT",
"dependencies": {
"async": "^3.2.3",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.3"
},
"devDependencies": {
"concurrently": "^7.2.1",
"nodemon": "^2.0.16"
}
}