-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 906 Bytes
/
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
{
"name": "scrape-the-plate",
"version": "1.0.0",
"description": "A web app for scraping and collating recipes",
"scripts": {
"test-django": "$VIRTUAL_ENV/bin/python manage.py test --parallel --keepdb",
"heroku-postbuild": "cd frontend/ && yarn install && yarn run build",
"dumpdata": "$VIRTUAL_ENV/bin/python manage.py dumpdata --indent=2 recipes > fixtures-data/dumped.json ",
"precommit": "lint-staged && yarn test-django && cd frontend && npm run precommit"
},
"cacheDirectories": [
"node_modules",
"frontend/node_modules"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jf248/scrape-the-plate.git"
},
"keywords": [
"recipes"
],
"author": "Joshua Freedman",
"license": "MIT",
"homepage": "https://github.com/jf248/scrape-the-plate#readme",
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.0"
}
}