-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.19 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.19 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "microfeedback-website",
"private": true,
"description": "MicroFeedback official website",
"version": "1.0.0",
"author": "Steven Loria <sloria1@gmail.com>",
"resolutions": {
"gatsby/react": "16.0.0",
"gatsby/react-dom": "16.0.0"
},
"dependencies": {
"array-from": "^2.1.1",
"compass-vertical-rhythm": "^1.4.5",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.6.1",
"gatsby": "^1.9.279",
"gatsby-link": "^1.6.46",
"gatsby-plugin-catch-links": "^1.0.26",
"gatsby-plugin-favicon": "^2.1.1",
"gatsby-plugin-glamor": "^1.6.13",
"gatsby-plugin-google-fonts": "0.0.4",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-typography": "^1.7.19",
"gatsby-remark-autolink-headers": "^1.4.19",
"gatsby-remark-copy-linked-files": "^1.5.37",
"gatsby-remark-images": "^1.5.67",
"gatsby-remark-prismjs": "^2.0.5",
"gatsby-remark-responsive-iframe": "^1.4.20",
"gatsby-remark-smartypants": "^1.4.12",
"gatsby-source-filesystem": "^1.5.39",
"gatsby-transformer-remark": "^1.7.44",
"github-slugger": "^1.2.1",
"glamor": "^2.20.40",
"js-yaml": "^3.12.2",
"microfeedback-button": "^1.0.1",
"prismjs": "^1.15.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.7.0",
"react-helmet": "^5.2.0",
"slugify": "^1.3.4",
"string.prototype.includes": "^1.0.0",
"string.prototype.repeat": "^0.2.0",
"typography": "^0.16.18"
},
"keywords": [
"gatsby",
"microfeedback",
"documentation"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"format": "prettier --write \"src/**/*.js\"",
"lint": "xo",
"test": "npm run lint",
"deploy": "gatsby build && gh-pages -d public -b master"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint-config-xo-react": "^0.16.0",
"gh-pages": "^1.2.0",
"prettier": "^1.16.4",
"xo": "^0.18.2"
},
"xo": {
"envs": [
"node",
"browser"
],
"parser": "babel-eslint",
"extends": "eslint-config-xo-react",
"space": true,
"rules": {
"import/no-unassigned-import": 0,
"no-warning-comments": 0,
"react/prop-types": 0,
"react/jsx-closing-bracket-location": 0,
"react/jsx-curly-brace-presence": 0,
"react/jsx-one-expression-per-line": 0,
"react/jsx-tag-spacing": 0,
"unicorn/filename-case": 0,
"capitalized-comments": 0,
"react/no-danger": 0,
"operator-linebreak": [
"error",
"after",
{
"overrides": {
"?": "before",
":": "before"
}
}
],
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
]
}
},
"prettier": {
"bracketSpacing": false,
"useTabs": false,
"jsxBracketSameLine": true,
"singleQuote": true,
"trailingComma": "es5"
}
}