-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (42 loc) · 1.09 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": "mern",
"version": "1.0.0",
"description": "Mern stack",
"main": "app.js",
"scripts": {
"start": "node app.js",
"build": "npm run build --prefix client",
"heroku-postbuild": "npm install && cd client && npm install && npm run build",
"server": "nodemon app.js",
"client:install": "npm install --prefix client",
"client:build": "npm run build --prefix client",
"client": "npm run start --prefix client",
"dev": "cross-env NODE_ENV=development concurrently \"npm run client\" \"npm run server\" "
},
"engines": {
"node": "16.3.0"
},
"keywords": [
"mern",
"react"
],
"author": "Iliya brook <iliyabrook1987@gmail.com>",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^6.2.0",
"config": "^3.3.6",
"express": "^4.17.1",
"express-validator": "^6.12.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.15",
"node": "^16.3.0",
"shortid": "^2.2.16",
"cross-env": "^7.0.3",
"mongodb": "^3.6.9"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}