-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
91 lines (91 loc) · 2.7 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
{
"name": "jeonghwan-kim.github.io",
"private": true,
"description": "김정환 블로그",
"version": "1.0.0",
"author": "김정환 <ej88ej@@gmail.com>",
"dependencies": {
"@types/react-helmet": "^6.1.0",
"@types/react-share": "^3.0.3",
"babel-plugin-styled-components": "^1.11.1",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"core-js": "^3.6.5",
"dayjs": "^1.10.7",
"gatsby": "^4.12.1",
"gatsby-plugin-feed": "^4.12.1",
"gatsby-plugin-google-analytics": "^4.12.1",
"gatsby-plugin-graphql-codegen": "^3.1.1",
"gatsby-plugin-image": "^2.12.1",
"gatsby-plugin-manifest": "^4.12.1",
"gatsby-plugin-react-helmet": "^5.12.1",
"gatsby-plugin-sharp": "^4.12.1",
"gatsby-plugin-styled-components": "^5.12.1",
"gatsby-remark-autolink-headers": "^5.12.1",
"gatsby-remark-images": "^6.12.1",
"gatsby-remark-prismjs": "^6.15.0",
"gatsby-source-filesystem": "^4.12.1",
"gatsby-transformer-remark": "^5.13.0",
"gatsby-transformer-sharp": "^4.12.1",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"lodash": "^4.17.21",
"prismjs": "^1.28.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/react": "^6.0.26",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"prettier": "2.0.5",
"yargs": "^17.7.1"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"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",
"deploy": "gh-pages --dist public --branch gh-pages",
"ci": "npm run clean && npm run build && npm run deploy",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"gen-post": "./templates/gen.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jeonghwan-kim/jeonghwan-kim.github.com/"
},
"bugs": {
"url": "https://github.com/jeonghwan-kim/jeonghwan-kim.github.com/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,scss,css}": [
"prettier --write",
"git-add"
]
},
"resolutions": {
"graphql": "^15.4.0",
"graphql-compose": "^7.25.0",
"webpack": "^5.24.2"
}
}