-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 808 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "cannlytics_api",
"productName": "Cannlytics API",
"version": "0.0.1",
"license": "GPLv3",
"private": true,
"description": "Cannlytics API.",
"author": "Keegan Skeate <contact@cannlytics.com>",
"build": {
"productName": "Cannlytics API"
},
"scripts": {
"dev": "python manage.py runserver 4200",
"publish": "npm run container && npm run cloud && npm run deploy",
"lint": "python manage.py check",
"container": "gcloud builds submit --tag gcr.io/cannlytics/cannlytics-api",
"cloud": "gcloud run deploy cannlytics-api --image gcr.io/cannlytics/cannlytics-api --region us-central1 --allow-unauthenticated --platform managed",
"deploy": "firebase deploy --project cannlytics --only hosting:production"
},
"dependencies": {},
"devDependencies": {}
}