-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
48 lines (48 loc) · 1.62 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
43
44
45
46
47
48
{
"name": "vaccine2",
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/core": "^7.14.3",
"@parcel/transformer-image": "2.0.0-beta.2",
"@parcel/transformer-yaml": "2.0.0-beta.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-bin": "^0.149.0",
"husky": "^6.0.0",
"parcel": "^2.0.0-beta.2",
"postcss": "^8.3.0",
"sharp": "^0.28.1",
"yarn-deduplicate": "^3.1.0"
},
"scripts": {
"backend": "parcel build ./frontend/index.html; cd backend; pipenv run python app.py --scrape",
"build": "parcel build ./frontend/index.html --public-url ./",
"fixpipenv": "pipenv lock --pre --clear",
"frontend": "parcel serve ./frontend/index.html",
"lint": "pipenv run black backend/*; yarn eslint frontend --ext .js,.jsx --fix",
"scrape": "cd backend; pipenv run python local_scraper.py",
"tc": "pipenv run pyre; yarn flow",
"test": "pipenv run python -m unittest discover -s backend/tests/integration -t backend",
"prepare": "husky install"
},
"dependencies": {
"@types/react": "^17.0.7",
"bootstrap": "^5.0.2",
"i18next": "^20.2.4",
"i18next-browser-languagedetector": "^6.1.1",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.8.15",
"react-markdown": "^6.0.1",
"react-router-dom": "^5.2.0"
}
}