generated from react-sprint/gatsby-blog-starter-with-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.72 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "gatsby-blog-stater-with-typescript",
"description": "Gatsby Blog Starter with Typescript",
"version": "0.1.1",
"contributors": [
"leeyun1533 <[email protected]> (https://github.com/leeyun1533)",
"seung-00 <[email protected]> (https://github.com/seung-00)",
"dddieon <[email protected]> (https://github.com/dddieon)",
"jeongnaehyeok <[email protected]> (https://github.com/jeongnaehyeok)",
"JeongShin <[email protected]> (https://github.com/JeongShin)",
"sungyun6789 <[email protected]> (https://github.com/sungyun6789)"
],
"bugs": {
"url": "https://github.com/react-sprint/gatsby-blog-stater-with-typescript/issues"
},
"dependencies": {
"@reach/router": "^1.3.4",
"date-fns": "^2.11.1",
"disqus-react": "^1.0.11",
"fs-extra": "^9.0.0",
"gatsby": "^3.0.1",
"gatsby-plugin-disqus": "^1.2.2",
"gatsby-plugin-feed": "^3.0.0",
"gatsby-plugin-gatsby-cloud": "^2.0.0",
"gatsby-plugin-google-analytics": "^3.0.0",
"gatsby-plugin-image": "^1.0.0",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-offline": "^4.0.0",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-sass": "^4.1.0",
"gatsby-plugin-sharp": "^3.0.0",
"gatsby-remark-copy-linked-files": "^3.0.0",
"gatsby-remark-emoji": "0.0.3",
"gatsby-remark-images": "^4.0.0",
"gatsby-remark-prismjs": "^4.0.0",
"gatsby-remark-responsive-iframe": "^3.0.0",
"gatsby-remark-smartypants": "^3.0.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-remark": "^3.0.0",
"gatsby-transformer-sharp": "^3.0.0",
"gray-matter": "^4.0.2",
"inquirer": "^7.1.0",
"node-sass": "^5.0.0",
"prismjs": "^1.23.0",
"query-string": "^7.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"recursive-readdir": "^2.2.2",
"signale": "^1.4.0",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.0.0",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-jsx-conditionals": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "=4",
"lint-staged": "^10.5.4",
"prettier": "2.2.1"
},
"homepage": "https://github.com/react-sprint/gatsby-blog-stater-with-typescript#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/react-sprint/gatsby-blog-stater-with-typescript.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"src/**/*.{ts,js,json,scss,md}": [
"prettier --write",
"git add"
],
"src/**/*.{ts,tsx,js,jsx}": [
"eslint",
"git add"
]
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"lint": "eslint --fix --ext js,ts,tsx src",
"create": "node ./src/generators/posts/index.js"
}
}