-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
17 lines (17 loc) · 928 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"scripts": {
"frontend:install": "cd udagram/udagram-frontend && npm install -f",
"frontend:start": "cd udagram/udagram-frontend && npm run start",
"frontend:build": "cd udagram/udagram-frontend && npm run build",
"frontend:test": "cd udagram/udagram-frontend && npm run test",
"frontend:e2e": "cd udagram/udagram-frontend && npm run e2e",
"frontend:lint": "cd udagram/udagram-frontend && npm run lint",
"frontend:deploy": "cd udagram/udagram-frontend && npm run deploy",
"api:install": "cd udagram/udagram-api && npm install .",
"api:build": "cd udagram/udagram-api && npm run build",
"api:test": "cd udagram/udagram-api && npm run test",
"api:start": "cd udagram/udagram-api && npm run dev",
"api:deploy": "cd udagram/udagram-api && npm run deploy",
"deploy": "npm run api:deploy && npm run frontend:deploy"
}
}