-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (18 loc) · 952 Bytes
/
package.json
File metadata and controls
20 lines (18 loc) · 952 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"author": "Ahmed bahaa",
"scripts": {
"install":"npm run install:frontend && npm run install:backend",
"install:frontend": "cd ./udagram-frontend && npm install && cd ..",
"install:backend": "cd ./udagram-api && npm install && cd ..",
"build":"npm run build:frontend && npm run build:backend",
"build:frontend": "cd ./udagram-frontend && npm run build && cd ..",
"build:backend": "cd ./udagram-api && npm run build && cd ..",
"test":" npm run test:frontend && npm run test:backend",
"test:frontend": "cd ./udagram-frontend && npm run test && cd ..",
"test:backend": "cd ./udagram-api && npm run test && cd ..",
"deploy":"npm run deploy:frontend && npm run deploy:backend",
"deploy:frontend": "cd ./udagram-frontend && npm run deploy && cd ..",
"deploy:backend": "cd ./udagram-api && npm run deploy && cd .."
},
"devDependencies": {}
}