-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.26 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
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <[email protected]>",
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"postinstall": "husky install",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\"",
"lint": "eslint --cache .",
"build": "gatsby build",
"dev": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"sb": "start-storybook -p 6006 -s public",
"build-sb": "build-storybook",
"deploy": "gatsby build && gh-pages -d public -b deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/kimyouknow/kimyouknow.github.io"
},
"bugs": {
"url": "https://github.com/kimyouknow/kimyouknow.github.io/issues"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"gatsby": "^4.17.2",
"gatsby-plugin-advanced-sitemap": "^2.1.0",
"gatsby-plugin-canonical-urls": "^5.5.0",
"gatsby-plugin-emotion": "^7.17.0",
"gatsby-plugin-google-gtag": "^5.6.0",
"gatsby-plugin-manifest": "^5.5.0",
"gatsby-plugin-offline": "^5.17.0",
"gatsby-plugin-react-helmet": "^5.17.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-typescript": "^4.17.0",
"gatsby-remark-autolink-headers": "^6.4.0",
"gatsby-remark-copy-linked-files": "^5.17.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-gifs": "^1.2.0",
"gatsby-remark-images": "^6.17.0",
"gatsby-remark-prismjs": "^6.17.0",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-remark-smartypants": "^5.17.0",
"gatsby-remark-vscode": "^3.3.1",
"gatsby-transformer-remark": "^5.17.0",
"prismjs": "^1.28.0",
"query-string": "^7.1.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.7.1"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"@types/react-helmet": "^6.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"babel-loader": "^8.2.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-storybook": "^0.6.4",
"gatsby-plugin-image": "^2.21.0",
"gatsby-plugin-sharp": "^4.21.0",
"gatsby-source-filesystem": "^4.21.1",
"gatsby-transformer-sharp": "^4.21.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"storybook-addon-gatsby": "^0.0.5",
"typescript": "^4.7.4"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --ext .tsx --ext .ts ./src --fix"
],
"src/**": [
"prettier --write \"**/*.{js,jsx,ts,tsx,json,md,css}\""
]
}
}