-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) Β· 2.69 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cannlytics",
"version": "0.0.18",
"license": "MIT",
"homepage": "https://cannlytics.com",
"description": "Cannlytics is a suite of tools that you can use to wrangle, standardize, and analyze cannabis data.",
"author": {
"name": "Keegan Skeate",
"email": "contact@cannlytics.com"
},
"private": true,
"scripts": {
"start": "npm-run-all --parallel serve livereload dev",
"serve": "cd website & webpack serve --env development & cd ../",
"livereload": "set PROJECT=website & python manage.py livereload --ignore-static-dirs",
"dev": "set PROJECT=website & python manage.py runserver",
"build": "cd website & webpack --env production & cd ../",
"collectstatic": "set PROJECT=website & echo yes|python manage.py collectstatic",
"container": "npm run collectstatic --noinput & gcloud builds submit --tag gcr.io/cannlytics/cannlytics-website",
"run": "gcloud run deploy cannlytics-website --image=gcr.io/cannlytics/cannlytics-website --set-env-vars=SETTINGS_NAME=cannlytics_platform_settings --region=us-central1 --allow-unauthenticated --platform=managed --memory=8Gi --cpu=1 --min-instances=1 --max-instances=99 --no-use-http2 --timeout=15m",
"deploy": "firebase deploy --project cannlytics --only hosting:cannlytics",
"docker": "docker build . --tag gcr.io/cannlytics/cannlytics-website:latest & docker push gcr.io/cannlytics/cannlytics-website:latest",
"publish": "npm run build & npm run collectstatic & npm run docker & npm run run & npm run deploy",
"clean": "rimraf website/static/website/js/bundles/hot"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@primer/octicons": "19.8.0",
"ag-grid-community": "^33.0.3",
"axios": "1.7.9",
"bootstrap": "^5.3.3",
"firebase": "^11.1.0",
"html5-qrcode": "2.3.8",
"npm": "^11.0.0",
"popper.js": "1.16.1",
"stable": "^0.1.8",
"tether": "2.0.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@types/autoprefixer": "^10.2.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv-webpack": "^8.0.1",
"file-loader": "^6.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-node-externals": "^3.0.0"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}