-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 863 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "instarocket",
"version": "1.0.0",
"repository": "https://github.com/WilliamJesusDev/OmniStack/tree/master/InstaRocket",
"author": "William Jesus <williamjesusti@gmail.com>",
"license": "MIT",
"scripts": {
"install:yarn": "echo InstaRocket && yarn install && yarn i:yarn\n",
"install:npm": "echo InstaRocket && npm install && npm run i:npm\n",
"i:yarn": "yarn backend && yarn frontend && yarn mobile && cd ..",
"i:npm": "npm run backend && npm run frontend && npm run mobile && cd ..",
"backend": "cd backend && yarn install && yarn upgrade\n",
"frontend": "cd frontend && yarn install && yarn upgrade\n",
"mobile": "cd mobile && yarn install && yarn upgrade\n",
"start": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm run start\""
},
"dependencies": {
"concurrently": "^5.1.0"
}
}