-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-mid.json
125 lines (125 loc) · 2.56 KB
/
package-mid.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
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
124
125
{
"name": "www.radiokashana.org",
"version": "1.0.0",
"description": "www.radiokashana.org",
"author": "Jorge Vargas",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"src/**/*.js\"",
"test": "xo && jest",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b master"
},
"dependencies": {
"@mdx-js/mdx": "1.6.22",
"@mdx-js/react": "1.6.22",
"gatsby": "^2.32.3",
"gatsby-image": "2.11.0",
"gatsby-plugin-layout": "1.10.0",
"gatsby-plugin-manifest": "2.12.0",
"gatsby-plugin-mdx": "1.10.0",
"gatsby-plugin-netlify-cms": "4.10.0",
"gatsby-plugin-offline": "3.10.1",
"gatsby-plugin-react-helmet": "3.10.0",
"gatsby-plugin-sass": "3.2.0",
"gatsby-plugin-sharp": "2.14.1",
"gatsby-plugin-sitemap": "2.12.0",
"gatsby-source-filesystem": "2.11.0",
"gatsby-transformer-json": "2.11.0",
"gatsby-transformer-sharp": "2.12.0",
"netlify-cms-app": "2.14.23",
"postcss": "8.2.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "6.1.0"
},
"license": "MIT",
"main": "n/a",
"devDependencies": {
"babel-core": "6.26.3",
"babel-jest": "26.6.3",
"eslint-config-xo-react": "0.23.0",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-react": "7.22.0",
"gh-pages": "3.1.0",
"jest": "26.6.3",
"postcss-import": "14.0.0",
"prettier": "2.2.1",
"react-test-renderer": "^16.13.1",
"regenerator-runtime": "0.13.7",
"tachyons": "4.12.0",
"tachyons-colors": "5.3.3",
"xo": "0.37.1",
"yarn": "1.22.10"
},
"xo": {
"extends": [
"xo-react",
"plugin:jest/recommended"
],
"semicolon": false,
"rules": {
"comma-dangle": [
"error",
"always-multiline"
],
"quotes": [
"error",
"double",
{
"allowTemplateLiterals": true
}
],
"import/no-unassigned-import": {
"allow": [
"**/*.css"
]
},
"import/no-extraneous-dependencies": [
"error",
{
"peerDependencies": true
}
],
"react/prop-types": [
"off"
],
"react/no-unknown-property": [
"error",
{
"ignore": [
"class"
]
}
]
}
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "(\\.test|spec)\\.(js|jsx)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/.cache/"
],
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"jsx",
"js"
],
"coverageReporters": [
"lcov",
"text",
"html"
]
}
}