forked from CodeForBuffalo/affordable_water
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.63 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
{
"name": "getwaterwisebuffalo",
"version": "1.0.0",
"scripts": {
"coverage:erase": "pipenv run coverage erase && npm run coverage:erasehtmlcov",
"coverage:erasehtmlcov": "rm -rf htmlcov",
"coverage:run": "pipenv run coverage run manage.py test",
"coverage:html": "pipenv run coverage html",
"test": "pipenv run python manage.py test",
"coverage": "npm run coverage:erase && npm run coverage:run && npm run coverage:html",
"python-setup": "pip install pipenv && pipenv sync",
"setup": "npm run python-setup && npm install",
"gulp": "pipenv run gulp",
"collectstatic": "pipenv run python manage.py collectstatic --noinput",
"heroku-collectstatic": "python manage.py collectstatic --noinput",
"compress": "pipenv run python manage.py compress --force",
"heroku-compress": "python manage.py compress --force",
"assets": "npm run gulp && npm run collectstatic && npm run compress",
"migrate": "pipenv run python manage.py migrate",
"start": "pipenv run python manage.py runserver",
"heroku-prebuild": "npm install",
"heroku-postbuild": "npm run gulp && npm run heroku-collectstatic && npm run heroku-compress",
"celery": "celery worker -A affordable_water -l info --pool=solo"
},
"license": "MIT",
"dependencies": {
"bourbon": "^6.0.0",
"chromedriver": "^78.0.1",
"getbuffalowater-bourbon-neat": "^1.8.0",
"gulp": "^4.0.2",
"gulp-sass": "^4.0.2",
"node-sass": "^4.14.1",
"normalize.css": "^8.0.1"
},
"devDependencies": {
"gulp": "^4.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeForBuffalo/affordable_water"
}
}