-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 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
{
"name": "pwad",
"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": {
"@sanity/base": "0.147.10-document-actions.37",
"@sanity/color-input": "^1.150.1",
"@sanity/components": "0.147.10-document-actions.37",
"@sanity/core": "0.147.10-document-actions.37",
"@sanity/dashboard": "0.147.10-document-actions.37",
"@sanity/default-layout": "0.147.10-document-actions.37",
"@sanity/default-login": "0.147.10-document-actions.37",
"@sanity/desk-tool": "0.147.10-document-actions.37",
"@sanity/vision": "0.147.10-document-actions.37",
"@u-wave/react-vimeo": "^0.8.1",
"get-video-id": "^3.1.4",
"pptxgenjs": "gitbrent/PptxGenJS#master",
"prop-types": "^15.6",
"react": "^16.2",
"react-dom": "^16.2",
"react-icons": "^3.8.0",
"react-youtube": "^7.9.0",
"sanity-plugin-dashboard-widget-document-chart": "^0.0.6",
"sanity-plugin-dashboard-widget-document-list": "^0.0.9",
"sanity-plugin-dashboard-widget-feed": "^0.1.4"
},
"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"
}
}
}
}