-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.38 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
{
"name": "gatsby-tailwind-styled-components-storybook-starter",
"description": "A bare-bones Tailwind CSS + Styled-Components + Storybook starter for Gatsby",
"version": "1.0.1",
"author": "Dennis Vash <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"template",
"tailwind",
"storybook",
"styled-components",
"css-in-js"
],
"repository": {
"type": "git",
"url": "https://github.com/denvash/gatsby-styled-tailwind-storybook-starter"
},
"bugs": {
"url": "https://github.com/denvash/gatsby-styled-tailwind-storybook-starter/issues"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "yarn develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"storybook": "NODE_ENV=production start-storybook -p 6006",
"build-storybook": "yarn build; NODE_PATH=src/ NODE_ENV=production build-storybook -s public --quiet"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.6",
"@mdx-js/react": "^1.6.6",
"autoprefixer": "^9.8.4",
"bufferutil": "^4.0.1",
"core-js": "^2.5.7",
"gatsby": "^2.19.16",
"gatsby-image": "^2.3.5",
"gatsby-plugin-google-analytics": "^2.3.10",
"gatsby-plugin-layout": "^1.3.4",
"gatsby-plugin-mdx": "^2.14.1",
"gatsby-plugin-page-creator": "^2.3.12",
"gatsby-plugin-postcss": "^2.3.9",
"gatsby-plugin-react-helmet": "^3.1.13",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-sharp": "^2.5.7",
"gatsby-plugin-typography": "^2.4.4",
"gatsby-remark-copy-linked-files": "^2.2.3",
"gatsby-remark-images": "^3.2.6",
"gatsby-remark-prismjs": "^3.4.5",
"gatsby-remark-responsive-iframe": "^2.3.3",
"gatsby-remark-smartypants": "^2.2.3",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-json": "^2.4.3",
"gatsby-transformer-remark": "^2.7.5",
"gatsby-transformer-sharp": "^2.4.6",
"i18next": "^19.4.5",
"i18next-browser-languagedetector": "^5.0.0",
"postcss-import": "^12.0.1",
"prettier": "^1.18.2",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-google-recaptcha": "^2.0.1",
"react-helmet": "^5.2.1",
"react-i18next": "^11.6.0",
"react-social-sharing": "^3.0.1",
"react-typography": "^0.16.19",
"styled-components": "^5.1.1",
"styled-is": "^1.3.0",
"typeface-bitter": "0.0.71",
"typeface-montserrat": "0.0.75",
"typescript": "^3.8.3",
"typography": "^0.16.19",
"typography-breakpoint-constants": "^0.16.19",
"typography-plugin-code": "^0.16.19",
"utf-8-validate": "^5.0.2",
"webpack": "^5.69.1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@storybook/addon-actions": "^5.2.5",
"@storybook/addon-links": "^5.2.5",
"@storybook/addons": "^5.2.5",
"@storybook/react": "^5.2.5",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-gatsby": "^0.2.20",
"gatsby-plugin-styled-components": "^3.1.11",
"gatsby-remark-code-titles": "^1.1.0",
"husky": "^3.0.9",
"postcss-preset-env": "^6.7.0",
"pretty-quick": "^2.0.1",
"tailwind.macro": "^1.0.0-alpha.10",
"tailwindcss": "^1.2.0"
}
}