-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 1.11 KB
/
package.json
File metadata and controls
32 lines (31 loc) · 1.11 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
{
"name": "parkqueues",
"description": "Park Queues - parkqueues.com",
"homepage": "https://www.parkqueues.com",
"private": true,
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "rollup -c",
"deps": "source pq-env/bin/activate; pip install -r requirements.txt --upgrade",
"test": "source pq-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 parkqueues --version `git describe --always --abbrev=7 --match 'NOT A TAG' --dirty='-tainted'` --no-promote",
"start": "npm run build; gunicorn --bind :8080 --workers 4 main:app",
"stop": "killall 'gunicorn: master'"
},
"devDependencies": {
"@open-wc/testing": "^3.1.4",
"@rollup/plugin-node-resolve": "^13.3.0",
"rollup-plugin-copy": "^3.4.0",
"@web/test-runner": "^0.20.2",
"rollup": "^2.73.0"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.0.0-beta.73",
"lit": "^2",
"page": "^1.11.6"
}
}