-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
21 lines (21 loc) · 883 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "mern-task-manager",
"version": "1.0.0",
"description": "A MERN application for basic tasks management",
"main": "index.js",
"scripts": {
"dev-server": "npm run dev --prefix backend",
"dev-client": "npm start --prefix frontend",
"dev": "concurrently \"npm run dev-server\" \"npm run dev-client\"",
"install-all": "npm install && npm install --prefix frontend && npm install --prefix backend",
"heroku-postbuild": "npm install --prefix frontend && npm run build --prefix frontend && npm install --prefix backend",
"build": "npm install --prefix frontend && npm run build --prefix frontend && npm install --prefix backend",
"start": "cd backend && node app.js"
},
"keywords": ["MERN", "Tasks","Task Hive", "Full stack application"],
"author": "Shreyas",
"license": "ISC",
"devDependencies": {
"concurrently": "^7.1.0"
}
}