-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.61 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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "stkilda",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@newfrontdoor/audio-player": "0.1.8",
"@newfrontdoor/footer": "^1.1.1",
"@newfrontdoor/form": "^0.7.3",
"@newfrontdoor/search": "^0.3.1",
"@newfrontdoor/sermon": "^0.5.6",
"@react-google-maps/api": "^1.9.8",
"@sanity/block-content-to-react": "^2.0.6",
"@sanity/client": "^1.149.2",
"@sanity/image-url": "^0.140.12",
"@sendgrid/mail": "^7.2.1",
"@theme-ui/components": "^0.3.1",
"@theme-ui/style-guide": "^0.3.0",
"@u-wave/react-vimeo": "^0.9.0",
"@u-wave/react-youtube": "^0.7.1",
"babel-plugin-inline-react-svg": "^1.1.1",
"flexsearch": "^0.6.30",
"get-video-id": "^3.1.4",
"next": "9.5.6-canary.18",
"next-compose-plugins": "^2.2.1",
"next-fonts": "^1.5.1",
"next-images": "^1.8.4",
"normalize.css": "^8.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-hamburger-menu": "^1.1.1",
"react-icons": "^3.9.0",
"theme-ui": "^0.3.1",
"typeface-lato": "^0.0.75",
"typeface-open-sans": "^0.0.75",
"xmlbuilder": "^15.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint-config-xo-react": "0.23.0",
"eslint-plugin-emotion": "^10.0.7",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "4.0.8",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react-scripts": "^3.0.1",
"xo": "0.32.1"
},
"xo": {
"extends": [
"xo-react"
],
"parser": "babel-eslint",
"prettier": true,
"space": true,
"plugins": [
"emotion"
],
"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": [
"jest-dom/extend-expect"
]
}
]
}
}
]
},
"eslint": {
"settings": {
"react": {
"version": "detect"
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"volta": {
"node": "16.20.2"
}
}