-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (22 loc) · 1.21 KB
/
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
{
"name": "udagram",
"version": "1.0.0",
"description": "This application is provided to you as an alternative starter project if you do not wish to host your own code done in the previous courses of this nanodegree. The udagram application is a fairly simple application that includes all the major components of a Full-Stack web application.",
"main": "index.js",
"scripts": {
"install":"npm run install:frontend && npm run install:backend",
"build":"npm run build:frontend && npm run build:backend",
"deploy":"npm run deploy:frontend && npm run deploy:backend",
"test": "npm run test:frontend && npm run test:backend ",
"install:frontend":"cd udagram-frontend && npm install && cd ..",
"install:backend":"cd udagram-api && npm install && cd ..",
"build:frontend":"cd udagram-frontend && npm run build && cd ..",
"build:backend":"cd udagram-api && npm run build && cd ..",
"test:frontend":"cd udagram-frontend && npm run test && cd ..",
"test:backend":"cd udagram-api && npm run test && cd ..",
"deploy:frontend":"cd udagram-frontend && npm run deploy && cd ..",
"deploy:backend":"cd udagram-api && npm run deploy && cd .."
},
"author": "",
"license": "ISC"
}