-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.19 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
92
93
94
95
96
97
98
99
100
{
"name": "netoani.com",
"version": "1.2.0",
"private": true,
"description": "Itai Steinherz's website",
"license": "MIT",
"repository": "itaisteinherz/netoani.com",
"author": {
"name": "Itai Steinherz",
"email": "itaisteinherz@gmail.com",
"url": "github.com/itaisteinherz"
},
"engines": {
"node": ">=16"
},
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"test": "xo"
},
"keywords": [
"gatsby",
"blog",
"personal",
"programming",
"thoughts"
],
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"gatsby": "^4.4.0",
"gatsby-plugin-feed": "^4.4.0",
"gatsby-plugin-google-analytics": "^4.4.0",
"gatsby-plugin-image": "^2.4.0",
"gatsby-plugin-manifest": "^4.4.0",
"gatsby-plugin-mdx": "^3.4.0",
"gatsby-plugin-offline": "^5.4.0",
"gatsby-plugin-react-helmet": "^5.4.0",
"gatsby-plugin-sharp": "^4.4.0",
"gatsby-plugin-typography": "^4.4.0",
"gatsby-remark-copy-linked-files": "^5.4.0",
"gatsby-remark-images": "^6.4.0",
"gatsby-remark-prismjs": "^6.4.0",
"gatsby-remark-responsive-iframe": "^5.4.0",
"gatsby-remark-smartypants": "^5.4.0",
"gatsby-source-filesystem": "^4.4.0",
"gatsby-transformer-remark": "^5.4.0",
"gatsby-transformer-sharp": "^4.4.0",
"gray-percentage": "^2.0.0",
"prismjs": "^1.27.0",
"prop-types": "^15.8.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-typography": "^0.16.20",
"typeface-quattrocento-sans": "1.1.13",
"typeface-work-sans": "1.1.13",
"typography": "^0.16.21",
"typography-theme-fairy-gates": "^0.16.19"
},
"devDependencies": {
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"xo": "^0.33.1"
},
"xo": {
"extends": "xo-react",
"envs": [
"node",
"browser"
],
"ignores": [
".cache",
"public"
],
"rules": {
"quotes": [
"error",
"double"
],
"unicorn/filename-case": "off",
"react/prop-types": "off",
"react/jsx-pascal-case": [
"error",
{
"allowAllCaps": true
}
],
"import/extensions": [
"error",
{
"mdx": "always",
"css": "always"
}
]
}
}
}