-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (28 loc) · 925 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend for Expense Tracker",
"main": "server.js",
"scripts": {
"build": "cd frontend && npm run build",
"install-client": "cd frontend && npm install",
"server": "nodemon server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "npm run install-client ",
"develop": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix frontend\"",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix frontend\""
},
"author": "Sashitharan",
"license": "MIT",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^5.12.13",
"morgan": "^1.10.0",
"concurrently": "^6.2.0",
"nodemon": "^2.0.7"
},
"devDependencies": {}
}