-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "covidhelphub-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"bootstrap": "5.1.3",
"eslint-config-airbnb-typescript": "^16.0.0",
"formik": "^2.2.9",
"history": "^5.2.0",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.1.0",
"react-bootstrap": "^2.2.2",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-stores": "^5.2.0",
"react-table": "^7.7.0",
"sass": "^1.49.8",
"styled-components": "^5.3.3",
"web-vitals": "^1.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^12.1.10",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@types/react-table": "^7.7.9",
"@types/react-test-renderer": "^17.0.1",
"@types/styled-components": "^5.1.20",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-jest": "^26.6.3",
"cypress": "^9.2.1",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"ts-jest": "26.5.6",
"typescript": "^4.4.4"
},
"lint-staged": {
"src/**/*.ts*": [
"yarn prettier:fix",
"yarn lint"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"cy:open": "cypress open",
"cy:run": "cypress run",
"eject": "react-scripts eject",
"lint": "eslint src --ext .ts,.tsx --fix",
"prettier:fix": "prettier --write",
"prettier:check": "prettier --check",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}