-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.64 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.64 KB
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": "hosting-a-full-stack-app",
"version": "1.0.0",
"description": "Taking a newly developed full stack application and deploy it to a cloud service provider so that it is available to customers. This application contains the main components of a 3-tier full stack application (UI, API, and Database).",
"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:start": "cd udagram/udagram-api && npm run dev",
"api:test": "cd udagram/udagram-api && npm run test",
"api:deploy": "cd udagram/udagram-api && npm run deploy",
"deploy": "npm run api:deploy && npm run frontend:deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FADL285/Hosting-a-Full-Stack-Application.git"
},
"keywords": [],
"author": "Mohamed Fadl <Mohamed.Fadl2852@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/FADL285/Hosting-a-Full-Stack-Application/issues"
},
"homepage": "https://github.com/FADL285/Hosting-a-Full-Stack-Application#readme"
}