-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.6 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
{
"name": "ownemployed",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@auth0/auth0-spa-js": "^1.8.1",
"@graphql-codegen/cli": "^1.15.4",
"@rebass/forms": "^4.0.6",
"@rebass/preset": "^4.0.5",
"@sentry/browser": "^5.16.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/auth0": "^2.20.3",
"@types/react-router-config": "^5.0.1",
"@types/react-router-dom": "^5.1.5",
"apollo-boost": "^0.4.8",
"cloudinary-react": "^1.5.0",
"emotion": "^10.0.27",
"emotion-theming": "^10.0.27",
"facepaint": "^1.2.1",
"formik": "^2.1.4",
"graphql": "^15.0.0",
"history": "^4.10.1",
"react": "^16.13.1",
"react-cookie-consent": "^5.0.1",
"react-dom": "^16.13.1",
"react-dropzone": "^11.0.1",
"react-icons": "^3.10.0",
"react-infinite-scroller": "^1.2.4",
"react-markdown": "^4.3.1",
"react-paginate": "^6.3.2",
"react-router": "^5.1.2",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-select": "^3.1.0",
"rebass": "^4.0.7",
"typescript": "~3.7.2",
"yup": "^0.29.1"
},
"devDependencies": {
"@graphql-codegen/cli": "1.15.4",
"@graphql-codegen/typescript": "1.15.4",
"@graphql-codegen/typescript-operations": "^1.15.4",
"@graphql-codegen/typescript-react-apollo": "1.15.4",
"@types/rebass": "^4.0.6",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mrm": "^2.3.0",
"prettier": "^2.0.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"generate": "graphql-codegen --config codegen.yml"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}