-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.06 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": "stkilda",
"private": true,
"version": "1.0.0",
"description": "",
"main": "package.json",
"author": "New Front Door <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"start": "sanity start",
"test": "sanity check"
},
"keywords": [
"sanity"
],
"dependencies": {
"@lifeomic/attempt": "^3.0.0",
"@newfrontdoor/audio-player": "^0.1.3",
"@newfrontdoor/form": "^0.7.4",
"@sanity/base": "^2.34.0",
"@sanity/color-input": "^2.34.0",
"@sanity/components": "^2.14.0",
"@sanity/core": "^2.34.0",
"@sanity/dashboard": "^2.34.0",
"@sanity/default-layout": "^2.34.0",
"@sanity/default-login": "^2.34.0",
"@sanity/desk-tool": "^2.34.0",
"@sanity/google-maps-input": "^2.34.0",
"@sanity/production-preview": "^2.33.2",
"@sanity/vision": "^2.34.0",
"@u-wave/react-vimeo": "^0.8.3",
"@u-wave/react-youtube": "^0.7.1",
"get-video-id": "^3.1.4",
"prop-types": "^15.6",
"react": "^16.2",
"react-dom": "^16.2",
"react-dropzone": "^10.2.1",
"react-icons": "^3.8.0",
"react-spinners": "^0.6.1",
"sanity-plugin-dashboard-widget-feed": "^0.1.3",
"styled-components": "^5.2.0",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"prettier": "^1.18.2",
"xo": "^0.25.3"
},
"xo": {
"extends": [
"xo-react"
],
"parser": "babel-eslint",
"prettier": true,
"space": true,
"plugins": [
"unicorn"
],
"rules": {
"unicorn/filename-case": "off"
},
"overrides": [
{
"files": "**/__tests__/**/*.js",
"rules": {
"import/no-unassigned-import": [
"error",
{
"allow": [
"jest-dom/extend-expect"
]
}
]
}
}
]
},
"eslint": {
"settings": {
"react": {
"version": "detect"
}
}
}
}