-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.14 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": "artsu.me",
"version": "1.0.0",
"description": "An art hosting site where artists can upload their work, and make a personalized portfolio to showcase their work in a meaningful way. Dive into an amazing community of talented artists, and share your work through Artsu.me",
"main": "index.js",
"scripts": {
"frontend:init": "cd frontend && yarn install",
"backend:init": "cd backend && npm install",
"frontend": "cd frontend && yarn start",
"backend": "cd backend && npm run dev",
"frontend:deploy": "cd frontend && npm run build && firebase deploy",
"backend:deploy": "cd backend && npm run deploy:gcloud",
"init": "npm install && npm run frontend:init && npm run backend:init",
"dev": "concurrently --kill-others \"npm run frontend:dev\" \"npm run backend:dev\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/csc309-fall-2021/team18.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/csc309-fall-2021/team18/issues"
},
"homepage": "https://github.com/csc309-fall-2021/team18#readme",
"devDependencies": {
"concurrently": "^7.0.0"
}
}