-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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
{
"name": "gatsby-sseon-starter",
"description": "Very simple Blog Template",
"version": "0.9.1",
"author": "sNyung <seonhyung.jo@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/SeonHyungJo/gatsby-sseon-starter.git"
},
"license": "MIT",
"dependencies": {
"core-js": "^3.6.5",
"gatsby": "^2.24.67",
"gatsby-image": "^2.4.20",
"gatsby-link": "^2.4.15",
"gatsby-plugin-catch-links": "^2.3.14",
"gatsby-plugin-feed": "^2.5.13",
"gatsby-plugin-layout": "^1.3.12",
"gatsby-plugin-manifest": "^2.4.33",
"gatsby-plugin-react-helmet": "^3.3.12",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-root-import": "^2.0.5",
"gatsby-plugin-sass": "^2.3.14",
"gatsby-plugin-sharp": "^2.6.38",
"gatsby-plugin-sitemap": "^2.4.14",
"gatsby-remark-emoji": "0.0.3",
"gatsby-remark-images": "^3.3.32",
"gatsby-remark-prismjs": "^3.5.15",
"gatsby-source-filesystem": "^2.3.32",
"gatsby-tag-slider": "^1.2.1",
"gatsby-transformer-remark": "^2.8.37",
"gatsby-transformer-sharp": "^2.5.16",
"node-sass": "^4.14.1",
"prismjs": "^1.21.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-transition-group": "^4.4.1",
"typeface-fira-sans": "0.0.75",
"typeface-lato": "0.0.75",
"typeface-nanum-gothic": "0.0.63",
"typeface-nanum-gothic-coding": "0.0.63",
"typeface-nanum-myeongjo": "0.0.63",
"typeface-noto-sans-kr": "0.0.63",
"typeface-poor-story": "0.0.63"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.10.0",
"eslint-plugin-react": "^7.21.2",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"plop": "^2.7.4",
"prettier": "^2.1.2"
},
"keywords": [
"gatsby",
"snyung",
"blog"
],
"scripts": {
"dev": "gatsby develop",
"start": "npm run dev",
"build": "gatsby build",
"preserve": "npm run build",
"serve": "gatsby serve",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"generate": "plop --plopfile ./generators/plopfile.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"npm run lint",
"git add"
]
}
}