-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
100 lines (100 loc) · 3.41 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
{
"name": "tryingtowork",
"private": false,
"description": "Spaces to work online",
"version": "2.0.0",
"author": "Michael McKeever <[email protected]>",
"bugs": {
"url": "https://github.com/mckeever02/tryingtowork/issues"
},
"dependencies": {
"@emotion/core": "^10.0.7",
"@emotion/styled": "^10.0.7",
"@mdx-js/mdx": "^0.16.6",
"@mdx-js/tag": "^0.16.6",
"babel-plugin-tailwind-components": "^0.5.10",
"classnames": "^2.2.6",
"create-react-class": "^15.6.3",
"disqus-react": "^1.0.5",
"dotenv": "^7.0.0",
"emotion": "^9.2.6",
"emotion-server": "^9.2.6",
"gatsby": "^2.3.14",
"gatsby-image": "^2.0.22",
"gatsby-mdx": "^0.3.5",
"gatsby-plugin-emotion": "^2.0.0-rc.5",
"gatsby-plugin-feed": "^2.0.8",
"gatsby-plugin-google-analytics": "^2.0.5",
"gatsby-plugin-manifest": "^2.0.5",
"gatsby-plugin-netlify": "^2.0.13",
"gatsby-plugin-offline": "^2.0.5",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sass": "^2.0.10",
"gatsby-plugin-sharp": "^2.0.6",
"gatsby-plugin-sitemap": "^2.0.12",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-copy-linked-files": "^2.0.5",
"gatsby-remark-images": "^2.0.4",
"gatsby-remark-reading-time": "^1.0.1",
"gatsby-remark-responsive-iframe": "^2.0.5",
"gatsby-remark-smartypants": "^2.0.5",
"gatsby-remark-unwrap-images": "^1.0.1",
"gatsby-source-filesystem": "^2.0.2",
"gatsby-source-google-sheets": "^1.1.1",
"gatsby-transformer-remark": "^2.1.6",
"gatsby-transformer-sharp": "^2.1.3",
"intersection-observer": "^0.5.1",
"mdx-utils": "^0.0.2",
"netlify-lambda": "^1.4.3",
"node-fetch": "^2.3.0",
"node-sass": "^4.11.0",
"postcss-cli": "^6.1.2",
"prism-react-renderer": "^0.1.5",
"prop-types": "^15.7.2",
"react": "^16.5.1",
"react-avatar": "^3.6.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.5.1",
"react-geosuggest": "^2.11.0",
"react-github-btn": "^1.0.5",
"react-helmet": "^5.2.0",
"react-live": "^1.12.0",
"react-map-gl": "^4.0.14",
"react-modal": "^3.8.1",
"react-moment": "^0.8.4",
"react-radio-group": "^3.0.3",
"react-scroll-up": "^1.3.3",
"react-star-rating-component": "^1.4.1",
"react-toggle": "^4.0.2",
"sass": "^1.17.2",
"sharp": "^0.22.0",
"source-map-explorer": "^1.8.0",
"tailwindcss": "^0.7.4",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"prettier": "^1.14.2"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"start:tw": "postcss ./src/css/tailwind-own.css -o ./src/css/tailwind.css -w",
"dev": "gatsby develop",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"serve": "gatsby serve",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js"
}
}