-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.02 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.02 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
{
"name": "amateur-hour",
"version": "1.0.0",
"description": "Amateur Hour is a website that allows individuals to gain more cred/experience through porfolio pieces, public reviews, or social media presence to practice their crafts and gain a following.",
"engines": {
"node": "16.x"
},
"scripts": {
"backend-install": "npm install --prefix backend",
"backend": "npm run dev --prefix backend",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"frontend-build": "npm run build --prefix frontend",
"build": "npm run backend-install && npm run frontend-install && npm run frontend-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juliakahn1/amateur-hour.git"
},
"keywords": [],
"author": "Davis Lucky, Julia Kahn, Mitchell Chan, Shannon Millar",
"license": "ISC",
"bugs": {
"url": "https://github.com/juliakahn1/amateur-hour/issues"
},
"homepage": "https://github.com/juliakahn1/amateur-hour#readme"
}