forked from pixie-io/blog.px.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.54 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-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]>",
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled-base": "^10.0.10",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.9.6",
"@mdx-js/mdx": "^1.0.10",
"@mdx-js/react": "^1.6.1",
"babel-plugin-styled-components": "^1.10.6",
"dotenv": "^8.2.0",
"emotion": "^10.0.9",
"emotion-server": "^10.0.9",
"emotion-theming": "^10.0.10",
"eslint-plugin-prettier": "^3.1.2",
"gatsby": "2.22.9",
"gatsby-image": "^2.4.5",
"gatsby-plugin-disqus": "^1.2.2",
"gatsby-plugin-emotion": "4.3.4",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-layout": "^1.0.15",
"gatsby-plugin-manifest": "^2.2.41",
"gatsby-plugin-mdx": "^1.2.12",
"gatsby-plugin-netlify": "^2.3.24",
"gatsby-plugin-offline": "^2.1.1",
"gatsby-plugin-react-css-modules-scss-support": "^0.1.0",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-remote-images": "^2.2.0",
"gatsby-plugin-sass": "^2.1.27",
"gatsby-plugin-scroll-reveal": "0.0.6",
"gatsby-plugin-segment-js": "^3.6.0",
"gatsby-plugin-sharp": "^2.4.5",
"gatsby-plugin-styled-components": "^3.1.6",
"gatsby-remark-copy-linked-files": "^2.3.2",
"gatsby-remark-images": "^3.3.8",
"gatsby-remark-relative-images": "^0.3.0",
"gatsby-source-filesystem": "^2.0.38",
"gatsby-source-gravatar": "^1.0.0",
"gatsby-theme-material-ui": "^1.0.8",
"gatsby-transformer-remark": "^2.6.50",
"gatsby-transformer-sharp": "^2.1.21",
"gatsby-transformer-yaml": "^2.4.11",
"node-fetch": "^2.6.0",
"node-sass": "^4.13.1",
"prism-react-renderer": "^1.0.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-body-classname": "^1.3.1",
"react-dom": "^16.8.6",
"react-emotion": "9.2.12",
"react-helmet": "^5.2.1",
"react-live": "^2.0.1",
"react-markdown": "^4.3.1",
"react-share": "^4.2.1",
"rehype-react": "^5.0.1",
"remark-containers": "^1.1.2",
"remark-unwrap-images": "^2.0.0",
"slugify": "^1.3.6",
"styled-components": "^4.4.0",
"system-components": "^3.0.3",
"js-cookie": "^2.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"prettier": "^1.17.1",
"typescript": "^3.7.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"lint": "eslint src ./*.js; git ls-files '**/*.tsx' '**/*.ts' '**/*.js' '**/*.jsx' '**/*.scss' '**/*.py' | xargs -l1 tools/licenses/checker.py -f",
"lint-fix": "eslint src ./*.js --fix",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}