-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 882 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "plan-ts",
"version": "1.0.0",
"description": "Full-stack application for organizing plants",
"main": "/backend/server.js",
"repository": "https://github.com/imgjeits/plan-ts.git",
"author": "Group 3",
"license": "MIT",
"scripts": {
"start": "node backend/server.js",
"backend-start": "cd backend && npm run dev",
"frontend-start": "cd frontend && npm run start",
"full-start": "concurrently -n 'backend,frontend' -c 'yellow,blue' \"npm run backend-start\" \"npm run frontend-start\"",
"full-install": "npm install && cd backend && npm install && cd ../frontend && npm install",
"build": "cd frontend && npm run build",
"heroku-install": "cd backend && npm install && cd ../frontend && npm install",
"heroku-postbuild": "npm run heroku-install && npm run build"
},
"devDependencies": {
"concurrently": "^6.0.1"
}
}