-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
31 lines (31 loc) · 918 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
30
31
{
"name": "thrifthub",
"version": "1.0.0",
"description": "A Django and React Native marketplace for thrift shopping",
"private": true,
"author": "Joem Elias Sanez",
"license": "MIT",
"bugs": {
"url": "https://github.com/israelias/thrifthub/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/israelias/thrifthub.git"
},
"homepage": "https://github.com/israelias/thrifthub#readme",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"configure:path": "node configurePath.js",
"configure:backend": "node configureBackend.js",
"setup:backend": "yarn configure:path && yarn configure:backend",
"start:backend": "yarn workspace backend start",
"start:frontend": "yarn workspace frontend start",
"dev": "concurrently \"yarn start:backend\" \"yarn start:frontend\""
},
"devDependencies": {
"concurrently": "^7.0.0"
}
}