-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.31 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
90
91
92
93
94
95
96
97
{
"name": "bannopc.org",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"@mdx-js/react": "^1.5.1",
"@newfrontdoor/calendar": "^2.2.0",
"@newfrontdoor/form": "^0.7.4",
"@react-google-maps/api": "^1.6.0",
"@sanity/block-content-to-react": "^2.0.7",
"@sanity/client": "^1.149.18",
"embla-carousel-react": "^1.0.3",
"emotion-theming": "^10.0.10",
"final-form": "^4.18.5",
"isomorphic-fetch": "^2.2.1",
"ky": "^0.13.0",
"ky-universal": "^0.3.0",
"mineral-ui": "^0.58.0",
"normalize.css": "^8.0.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-final-form": "^6.3.0",
"react-icons": "^3.7.0",
"react-responsive-audio-player": "^1.4.0",
"react-router-dom": "^5.1.0",
"react-scripts": "4.0.2",
"theme-ui": "^0.3.1",
"typeface-lato": "0.0.75",
"typeface-roboto-slab": "0.0.72",
"validator": "^13.1.1"
},
"devDependencies": {
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-emotion": "^10.0.14",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"prettier": "^1.18.2",
"xo": "^0.37.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"xo": {
"extends": [
"xo-react",
"plugin:jest/recommended"
],
"parser": "babel-eslint",
"prettier": true,
"space": true,
"plugins": [
"emotion",
"jest"
],
"rules": {
"emotion/jsx-import": "error",
"emotion/no-vanilla": "error",
"emotion/import-from-emotion": "error",
"emotion/styled-import": "error"
},
"overrides": [
{
"files": "**/__tests__/**/*.js",
"rules": {
"import/no-unassigned-import": [
"error",
{
"allow": [
"@testing-library/jest-dom/extend-expect"
]
}
]
}
}
]
},
"eslint": {
"settings": {
"react": {
"version": "detect"
}
}
}
}