-
Notifications
You must be signed in to change notification settings - Fork 439
/
package.json
98 lines (98 loc) · 3.3 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
{
"name": "learnstorybook.com",
"description": "Learn Storybook",
"version": "1.0.0",
"author": "Tom Coleman <[email protected]>, Dominic Nguyen <[email protected]>",
"dependencies": {
"@docsearch/css": "^3.2.1",
"@storybook/components-marketing": "^3.1.1",
"@storybook/design-system": "7.8.5",
"@storybook/theming": "^6.5.10",
"cheerio": "^1.0.0-rc.12",
"formik": "^2.2.9",
"framer-motion": "7.0.0",
"gatsby": "^4.22.0",
"gatsby-plugin-google-analytics": "^4.22.0",
"gatsby-plugin-google-gtag": "^5.4.0",
"gatsby-plugin-plausible": "^0.0.7",
"gatsby-plugin-react-helmet": "^5.22.0",
"gatsby-plugin-sharp": "^4.22.0",
"gatsby-plugin-sitemap": "^5.22.0",
"gatsby-remark-code-titles": "^1.1.0",
"gatsby-remark-copy-linked-files": "^5.22.0",
"gatsby-remark-images": "^6.22.0",
"gatsby-source-filesystem": "^4.22.0",
"gatsby-transformer-remark": "^5.22.0",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"polished": "^4.2.2",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-github-button": "^0.1.11",
"react-helmet": "^6.1.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"build-storybook": "build-storybook -s ./static",
"clean": "gatsby clean",
"dev": "gatsby develop",
"extract-sb-docs-metadata": "./scripts/extract-sb-docs-metadata.sh",
"format": "prettier-eslint --write '**/*.js'",
"lint": "eslint .",
"postbuild": "bash scripts/move-to-build.sh",
"postinstall": "patch-package",
"prebuild": "yarn extract-sb-docs-metadata && mkdir -p public/tutorials",
"prebuild-storybook": "yarn extract-sb-docs-metadata && gatsby build --prefix-paths",
"prepare": "husky install",
"prestorybook": "yarn extract-sb-docs-metadata && gatsby build --prefix-paths",
"serve": "gatsby serve --prefix-paths",
"storybook": "start-storybook -s ./static -p 6006",
"test": "echo \"Error: no test specified\" && exit 1"
},
"lint-staged": {
"*.md": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@babel/eslint-parser": "^7.18.9",
"@emotion/babel-plugin": "^11.10.2",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/addons": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@storybook/testing-library": "^0.0.13",
"babel-loader": "^8.2.5",
"babel-preset-gatsby": "^2.22.0",
"chromatic": "^6.9.0",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"node-fetch": "^2.6.7",
"patch-package": "^8.0.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0"
}
}