-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 967 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
{
"name": "workoutbuddy",
"version": "1.0.0",
"description": "Workout buddy frontend and backend",
"main": "index.js",
"scripts": {
"install-client": "npm install --prefix frontend",
"install-server": "npm install --prefix backend",
"install": "npm run install-client && npm run install-server",
"client": "npm start --prefix frontend",
"server": "npm run watch --prefix backend",
"start": "npm run client & npm run server",
"deploy": "npm run build --prefix frontend && npm start --prefix backend",
"test": "npm test --prefix frontend && npm test --prefix backend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/majidshakeelshawl/WorkOutBuddy.git"
},
"author": "Majid Shakeel Shawl",
"license": "ISC",
"bugs": {
"url": "https://github.com/majidshakeelshawl/WorkOutBuddy/issues"
},
"homepage": "https://github.com/majidshakeelshawl/WorkOutBuddy#readme"
}