-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.3 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
{
"name": "hyperdex-website",
"private": true,
"license": "MIT",
"scripts": {
"start": "gatsby develop --open",
"build": "gatsby build",
"lint": "xo && stylelint 'src/**/*.css'",
"test": "yarn lint"
},
"dependencies": {
"gatsby": "^2.0.14",
"gatsby-plugin-netlify-cms": "^3.0.3",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-remark": "^2.1.5",
"netlify-cms": "^2.1.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0"
},
"devDependencies": {
"eslint-config-xo-react": "^0.17.0",
"eslint-plugin-react": "^7.11.1",
"stylelint": "^9.6.0",
"stylelint-config-xo": "^0.11.0",
"xo": "^0.23.0"
},
"xo": {
"nodeVersion": ">=10",
"envs": [
"node",
"browser"
],
"extends": "xo-react",
"settings": {
"react": {
"version": "16.4"
}
},
"rules": {
"import/no-extraneous-dependencies": "off",
"import/no-unassigned-import": "off",
"comma-dangle": [
"error",
"always-multiline"
],
"unicorn/filename-case": "off",
"import/exports-last": "error",
"react/prop-types": "off",
"react/require-default-props": "off"
}
},
"stylelint": {
"extends": "stylelint-config-xo",
"rules": {
"selector-class-pattern": null,
"at-rule-empty-line-before": null
}
}
}