-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 1.28 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
{
"name": "participatory-policy-making",
"version": "0.0.1",
"scripts": {
"backend": "cd backend && pipenv run python manage.py runserver",
"frontend": "cd frontend && npm run dev",
"start": "concurrently -n \"backend,frontend\" -c \"bgWhite,bgCyan\" \"npm run backend\" \"npm run frontend\"",
"setup": "npm run concurrently-install && npm run python-setup && npm run nuxt-setup",
"test": "echo \"Error: no test specified\" && exit 1",
"concurrently-install": "npm install concurrently --save",
"python-setup": "pip install pipenv && npm run pipenv-sync && npm run django-migrate",
"pipenv-sync": "cd backend && pipenv sync",
"nuxt-setup": "cd frontend && npm install",
"django-migrate": "cd backend && pipenv run python manage.py migrate",
"quickstart": "npm run setup && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeForBuffalo/participatory-policy-making.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeForBuffalo/participatory-policy-making/issues"
},
"homepage": "https://github.com/CodeForBuffalo/participatory-policy-making#readme",
"dependencies": {
"concurrently": "^5.3.0"
}
}