-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.3 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.3 KB
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
{
"name": "gatsby-tailwind-styled-components-storybook-starter",
"description": "A bare-bones Tailwind CSS + Styled-Components + Storybook starter for Gatsby",
"version": "1.0.1",
"author": "Eric Jae-Min Joo <ericjaeminjoo@gmail.com>",
"license": "MIT",
"keywords": [
"gatsby",
"template",
"tailwind",
"storybook",
"styled-components",
"css-in-js"
],
"repository": {
"type": "git",
"url": "https://github.com/JJMin/personal-website"
},
"bugs": {
"url": "https://github.com/JJMin/personal-website/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": {
"gatsby": "^2.17.0",
"gatsby-background-image": "^0.9.14",
"gatsby-image": "^2.2.40",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-postcss": "^2.1.13",
"gatsby-plugin-react-helmet": "^3.1.13",
"gatsby-plugin-resolve-src": "^2.0.0",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.1.48",
"gatsby-transformer-sharp": "^2.3.14",
"postcss-import": "^12.0.1",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-icons": "^3.9.0",
"react-reveal": "^1.2.2",
"styled-components": "^5.0.0-rc.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",
"husky": "^3.0.9",
"postcss-preset-env": "^6.7.0",
"pretty-quick": "^2.0.1",
"tailwind.macro": "^1.0.0-alpha.10",
"tailwindcss": "^1.1.2"
}
}