-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.27 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
{
"name": "blog",
"private": true,
"description": "My personal blog",
"version": "1.2.0",
"author": "chayeoi <[email protected]>",
"dependencies": {
"@emotion/core": "^10.0.27",
"@mdx-js/mdx": "^1.5.5",
"@mdx-js/react": "^1.5.5",
"@types/mdx-js__react": "^1.5.0",
"dayjs": "^1.8.20",
"emotion-theming": "^10.0.27",
"gatsby": "^2.19.7",
"gatsby-image": "^2.2.40",
"gatsby-plugin-emotion": "^4.1.22",
"gatsby-plugin-feed": "^2.3.27",
"gatsby-plugin-google-analytics": "^2.1.35",
"gatsby-plugin-lodash": "^3.1.20",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-mdx": "^1.0.70",
"gatsby-plugin-offline": "^3.0.32",
"gatsby-plugin-polyfill-io": "^1.1.0",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-sitemap": "^2.2.27",
"gatsby-plugin-typescript": "^2.1.27",
"gatsby-remark-autolink-headers": "^2.1.24",
"gatsby-remark-copy-linked-files": "^2.1.37",
"gatsby-remark-images": "^3.1.44",
"gatsby-remark-images-medium-zoom": "^1.4.0",
"gatsby-remark-prismjs": "^3.3.31",
"gatsby-remark-responsive-iframe": "^2.2.32",
"gatsby-remark-smartypants": "^2.1.21",
"gatsby-source-filesystem": "^2.1.46",
"gatsby-transformer-remark": "^2.6.50",
"gatsby-transformer-sharp": "^2.3.14",
"lodash": "^4.17.21",
"mdx-utils": "^0.2.0",
"prism-react-renderer": "^1.0.2",
"prismjs": "^1.25.0",
"prop-types": "^15.7.2",
"query-string": "^6.11.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-use": "^13.26.4"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-xo": "^0.27.2",
"eslint-config-xo-react": "^0.22.0",
"eslint-config-xo-space": "^0.22.0",
"eslint-config-xo-typescript": "^0.26.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-simple-import-sort": "^5.0.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"typescript": "^3.7.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,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 src/**/**/*.tsx",
"lint:fix": "eslint --fix src/**/*/*.tsx"
},
"repository": {
"type": "git",
"url": "https://github.com/chayeoi/blog"
},
"bugs": {
"url": "https://github.com/chayeoi/blog"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint",
"git add"
]
}
}