-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 1.54 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
{
"name": "chronoblog",
"version": "1.0.0",
"private": true,
"description": "gatsby-starter-chronoblog",
"keywords": [],
"license": "MIT",
"author": "Ivan Ganev <[email protected]>",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"start": "gatsby develop"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"impliedStrict": true,
"jsx": true
},
"ecmaVersion": 2019,
"sourceType": "module",
"useJSXTextNode": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx",
".ts",
".tsx",
"md",
"mdx"
]
}
},
"react": {
"version": "detect"
}
},
"plugins": [
"prettier"
],
"extends": [
"plugin:prettier/recommended"
],
"rules": {
"prettier/prettier": "warn"
}
},
"dependencies": {
"gatsby": "^2.23.3",
"gatsby-plugin-disqus": "^1.1.4",
"gatsby-plugin-google-analytics": "^2.1.23",
"gatsby-plugin-manifest": "^2.4.11",
"gatsby-plugin-sitemap": "^2.2.21",
"gatsby-theme-chronoblog": "^0.26.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=12.21.0"
}
}