-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.36 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.36 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
28
29
30
31
32
33
{
"name": "greens-io",
"description": "Greens.io",
"homepage": "https://greens-io.appspot.com",
"private": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "rollup -c",
"setup": "npm ci; python3 -m venv gio-env; npm run deps",
"clean-setup": "rm -rf node_modules gio-env; npm run setup",
"deps": "source gio-env/bin/activate; pip install -r requirements.txt --upgrade; pip install -r requirements.dev.txt --upgrade",
"test": "source gio-env/bin/activate; python3 -m unittest discover -p '*_test.py' -b",
"webtest": "web-test-runner \"clientside/**/*_test.js\" --node-resolve",
"lint": "gulp lint-fix && lit-analyzer \"clientside/**/*.js\"",
"deploy": "gcloud app deploy --project greens-io --version `git describe --always --abbrev=7 --match 'NOT A TAG' --dirty='-tainted'` --no-promote app.yaml cron.yaml",
"start-app": "npm run build && gunicorn --bind :8080 --workers 1 main:app",
"start": "source gio-env/bin/activate; npm run start-app",
"stop": "killall gio-env/bin/python3"
},
"devDependencies": {
"@open-wc/testing": "^3.1.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup-plugin-copy": "^3.4.0",
"@web/test-runner": "^0.13.27",
"rollup": "^2.73.0"
},
"dependencies": {
"lit": "^2",
"@shoelace-style/shoelace": "^2.0.0-beta.83"
}
}