-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 1005 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "linklink",
"version": "1.0.0",
"description": "This is a web service that helps you find people with ease",
"repository": "https://github.com/swsnu/swppfall2022-team9",
"author": "Kim Dong Hun <hunkim98@gmail.com>",
"license": "unlicensed",
"scripts": {
"start": "cd frontend && yarn start",
"build": "cd frontend && yarn build",
"eject": "cd frontend && yarn eject",
"installa": "cd frontend && yarn install && cd ../backend && pip install -r requirements.txt",
"installf": "cd frontend && yarn install",
"installb": "cd backend && pip install -r requirements.txt",
"lintf": "cd frontend && yarn lint",
"lintb": "cd backend && pylint --rcfile=pylintrc **/*.py",
"backend": "python backend/manage.py runserver 8000",
"testf": "cd frontend && yarn testf_",
"testb": "cd backend && coverage run --branch --source='./linklink' manage.py test linklink/tests",
"loaddb": "cd backend && python manage.py loaddata */fixtures/*.json"
}
}