This repository was archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.68 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 <vagr9k@gmail.com>",
"dependencies": {
"@material-ui/core": "4.9.10",
"@material-ui/icons": "4.9.1",
"@mdx-js/mdx": "1.5.8",
"@mdx-js/react": "1.5.8",
"@mdx-js/tag": "0.20.3",
"axios": "0.19.2",
"change-case": "4.1.1",
"disqus-react": "1.0.8",
"gatsby": "2.20.13",
"gatsby-image": "2.3.2",
"gatsby-plugin-alias-imports": "1.0.5",
"gatsby-plugin-catch-links": "2.2.1",
"gatsby-plugin-feed": "2.4.1",
"gatsby-plugin-google-analytics": "2.2.2",
"gatsby-plugin-lodash": "3.2.1",
"gatsby-plugin-manifest": "2.3.3",
"gatsby-plugin-material-ui": "2.1.6",
"gatsby-plugin-mdx": "1.1.6",
"gatsby-plugin-meta-redirect": "1.1.1",
"gatsby-plugin-nprogress": "2.2.1",
"gatsby-plugin-react-helmet": "3.2.1",
"gatsby-plugin-sentry": "1.0.1",
"gatsby-plugin-sharp": "2.5.4",
"gatsby-plugin-sitemap": "2.3.1",
"gatsby-plugin-twitter": "2.2.2",
"gatsby-redirect-from": "0.2.1",
"gatsby-remark-autolink-headers": "2.2.1",
"gatsby-remark-copy-linked-files": "2.2.1",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "3.2.2",
"gatsby-remark-prismjs": "3.4.1",
"gatsby-remark-responsive-iframe": "2.3.1",
"gatsby-source-filesystem": "2.2.2",
"gatsby-transformer-remark": "2.7.1",
"gatsby-transformer-sharp": "2.4.4",
"lodash": "4.17.15",
"moment": "2.24.0",
"prismjs": "1.20.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "5.2.1",
"react-icons": "3.9.0",
"react-images": "1.1.0",
"react-particles-js": "3.0.3",
"react-pdf": "4.1.0",
"react-photo-gallery": "8.0.0",
"react-player": "1.15.3",
"react-share": "4.1.0",
"react-swipeable-views": "0.13.9",
"react-twitter-widgets": "1.7.1",
"react-typist": "2.0.5",
"react-youtube": "7.11.1",
"to-style": "1.3.3",
"url-join": "4.0.1"
},
"devDependencies": {
"axe-core": "3.5.3",
"cli-glob": "0.1.0",
"cypress": "4.3.0",
"cypress-axe": "0.8.1",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-cypress": "2.10.3",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"gh-pages": "2.2.0",
"prettier": "2.0.4",
"remark-cli": "8.0.0",
"remark-preset-lint-recommended": "4.0.0",
"start-server-and-test": "1.10.11",
"stylefmt": "6.0.3",
"stylelint": "13.3.0",
"stylelint-config-standard": "20.0.0",
"write-good": "1.0.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"cy:open": "node getPages && cypress open",
"cy:run": "node getPages && cypress run",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"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",
"deploy": "npm run clean && gatsby build --prefix-paths && gh-pages -d public -b gh-pages -t",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark blog/posts/",
"write-good": "write-good $(glob 'blog/posts/**/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}