-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 994 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 994 Bytes
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "18.x",
"npm": "8.1.2"
},
"scripts": {
"heroku-post": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"start": "node app.js",
"server": "nodemon app.js",
"client": "npm start --prefix client",
"clientinstall": "npm install --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "react-scripts build",
"render-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"vercel-build": "echo hello"
},
"author": "Prajwal",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.4.2",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"concurrently": "^8.0.1",
"nodemon": "^2.0.22"
}
}