-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
122 lines (122 loc) · 3.81 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "gatsby-starter-advanced",
"description": "GatsbyJS starter that includes examples for advanced use cases.",
"version": "1.1.0",
"author": "Ruben Harutyunyan <[email protected]>",
"dependencies": {
"@chakra-ui/react": "^1.1.0",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@mdx-js/loader": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@mdx-js/runtime": "^1.6.22",
"@next/mdx": "^10.0.4",
"babel-plugin-styled-components": "^1.12.0",
"framer-motion": "^3.1.1",
"gatsby": "^2.18.17",
"gatsby-image": "^2.2.37",
"gatsby-plugin-catch-links": "^2.1.21",
"gatsby-plugin-feed": "^2.3.25",
"gatsby-plugin-google-analytics": "^2.1.31",
"gatsby-plugin-lodash": "^3.1.18",
"gatsby-plugin-manifest": "^2.2.34",
"gatsby-plugin-nprogress": "^2.1.17",
"gatsby-plugin-offline": "^3.0.30",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.1.18",
"gatsby-plugin-sharp": "^2.3.10",
"gatsby-plugin-sitemap": "^2.2.24",
"gatsby-plugin-styled-components": "^3.1.16",
"gatsby-plugin-twitter": "^2.1.17",
"gatsby-remark-autolink-headers": "^2.1.21",
"gatsby-remark-copy-linked-files": "^2.1.33",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.1.39",
"gatsby-remark-prismjs": "^3.3.28",
"gatsby-remark-responsive-iframe": "^2.2.30",
"gatsby-source-filesystem": "^2.1.43",
"gatsby-transformer-remark": "^2.6.45",
"gatsby-transformer-sharp": "^2.3.9",
"gray-matter": "^4.0.2",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"next": "^10.0.4",
"next-mdx-remote": "^2.0.0",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.17.1",
"react": "^17.0.1",
"react-accessible-accordion": "^3.0.1",
"react-adsense": "^0.1.0",
"react-disqus-comments": "^1.4.0",
"react-dom": "^17.0.1",
"react-helmet": "^5.2.1",
"react-icons": "^4.2.0",
"react-medium-image-zoom": "^4.3.1",
"react-share": "^2.4.0",
"react-twitter-widgets": "^1.10.0",
"react-use": "^17.1.1",
"reading-time": "^1.2.1",
"slugify": "^1.4.6",
"styled-components": "^4.4.1",
"url-join": "^4.0.1"
},
"devDependencies": {
"@emotion/babel-preset-css-prop": "^11.0.0",
"@prettier/plugin-xml": "^0.12.0",
"@types/react-helmet": "^6.1.0",
"@types/styled-components": "^5.1.7",
"cli-glob": "^0.1.0",
"gh-pages": "^2.0.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mediumexporter": "^0.1.6",
"nextjs-sitemap-generator": "^1.1.3",
"prettier": "^1.19.1",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"stylefmt": "^6.0.3",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"typescript": "^4.1.3",
"write-good": "^1.0.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"gatsby:dev": "npm run develop",
"serve": "gatsby serve",
"gatsby:build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build:pp && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint:md": "remark content/posts/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write",
"medium:import": "mediumexporter",
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"sitemap:generate": "yarn build && yarn export && node ./your_nextjs_sitemap_generator"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}