-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 3.72 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
{
"name": "gatsby-starter-advanced",
"description": "GatsbyJS starter that includes examples for advanced use cases.",
"version": "1.1.0",
"author": "Ruben Harutyunyan <[email protected]>",
"dependencies": {
"algoliasearch": "^3.35.1",
"babel-plugin-styled-components": "^1.10.6",
"bootstrap": "^4.4.1",
"disqus-react": "^1.0.7",
"dotenv": "^8.2.0",
"gatsby": "^3.2.1",
"gatsby-plugin-algolia": "^0.5.0",
"gatsby-plugin-breadcrumb": "^12.1.0",
"gatsby-plugin-catch-links": "^3.2.0",
"gatsby-plugin-feed": "^3.2.0",
"gatsby-plugin-google-analytics": "^3.2.0",
"gatsby-plugin-image": "^1.2.0",
"gatsby-plugin-layout": "^2.2.0",
"gatsby-plugin-lodash": "^4.2.0",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-nprogress": "^3.2.0",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-react-svg": "^2.1.2",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sass": "^4.2.0",
"gatsby-plugin-sharp": "^3.2.0",
"gatsby-plugin-sitemap": "^3.2.0",
"gatsby-plugin-styled-components": "^4.2.0",
"gatsby-plugin-twitter": "^3.2.0",
"gatsby-remark-autolink-headers": "^3.2.0",
"gatsby-remark-copy-linked-files": "^3.2.0",
"gatsby-remark-images": "^4.2.0",
"gatsby-remark-prismjs": "^4.2.0",
"gatsby-remark-responsive-iframe": "^3.2.0",
"gatsby-source-filesystem": "^3.2.0",
"gatsby-transformer-json": "^3.2.0",
"gatsby-transformer-remark": "^3.2.0",
"gatsby-transformer-sharp": "^3.2.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-sass": "^4.13.0",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-big-calendar": "^0.22.1",
"react-bootstrap": "^1.0.0-beta.16",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.8.0",
"react-instantsearch-dom": "^6.1.0",
"react-intersection-observer": "^8.25.2",
"react-share": "^4.4.0",
"react-social-icons": "^4.1.0",
"react-transition-group": "^4.3.0",
"react-twitter-widgets": "^1.9.5",
"styled-components": "^4.4.1",
"tail.datetime": "^0.4.13",
"url-join": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@storybook/addon-actions": "^5.3.13",
"@storybook/addon-links": "^5.3.13",
"@storybook/addons": "^5.3.13",
"@storybook/react": "^5.3.13",
"babel-loader": "^8.0.6",
"cli-glob": "^0.1.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.1.0",
"prettier": "^2.2.1",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"stylefmt": "^6.0.3",
"stylelint": "^13.11.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.2.0",
"write-good": "^1.0.8"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"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:js": "eslint --ext .js,.jsx .",
"lint:md": "remark content/posts/",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}