-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2 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
{
"name": "nfd-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.12",
"@sanity/block-content-to-react": "^2.0.6",
"@sanity/client": "^1.149.2",
"@sanity/image-url": "^0.140.12",
"@theme-ui/components": "^0.3.1",
"@theme-ui/style-guide": "^0.3.0",
"babel-plugin-inline-react-svg": "^1.1.1",
"emotion-theming": "^10.0.10",
"next": "9.4.4",
"next-compose-plugins": "^2.2.0",
"normalize.css": "^8.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "^3.10.0",
"theme-ui": "^0.3.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "7.2.0",
"eslint-config-xo-react": "0.23.0",
"eslint-plugin-emotion": "^10.0.7",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "4.0.4",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react-scripts": "^3.0.1",
"xo": "0.32.0"
},
"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"
]
}
}