forked from alxshelepenok/lumen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.53 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
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"version": "3.0.5",
"name": "gatsby-starter-lumen",
"description": "A minimal, lightweight and mobile-first starter for creating blazing-fast static blogs",
"main": "n/a",
"scripts": {
"develop": "yarn run clean && gatsby develop",
"build": "yarn run clean && gatsby build",
"deploy": "yarn run clean && gatsby build --prefix-paths && gh-pages -d public",
"clean": "rimraf .cache public",
"flow": "flow",
"lint:js": "eslint --cache --ext .js,.jsx .",
"lint:scss": "stylelint \"src/**/*.scss\"",
"lint": "concurrently \"yarn run lint:js\" \"yarn run lint:scss\" \"yarn flow\"",
"test": "jest --config ./jest/jest-config.js",
"test:coverage": "jest --coverage --config ./jest/jest-config.js",
"test:watch": "jest --watch --config ./jest/jest-config.js"
},
"repository": "https://github.com/alxshelepenok/gatsby-starter-lumen",
"author": "Alexander Shelepenok <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"graphql",
"netlify",
"netlify-cms",
"pagination",
"categories",
"tags",
"prismjs",
"static",
"lost",
"blog",
"minimal",
"react",
"theme",
"starter",
"disqus"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@mdx-js/mdx": "^1.6.18",
"@mdx-js/react": "^1.6.18",
"bluebird": "^3.7.2",
"classnames": "^2.2.6",
"codecov": "^3.8.0",
"dotenv": "^8.2.0",
"gatsby": "^2.24.91",
"gatsby-link": "^2.4.16",
"gatsby-plugin-catch-links": "^2.3.15",
"gatsby-plugin-feed": "^2.5.20",
"gatsby-plugin-flow": "^1.3.13",
"gatsby-plugin-google-tagmanager": "^2.3.11",
"gatsby-plugin-manifest": "^2.4.35",
"gatsby-plugin-mdx": "^1.2.41",
"gatsby-plugin-netlify": "^2.3.24",
"gatsby-plugin-netlify-cms": "^4.3.16",
"gatsby-plugin-next-seo": "^1.6.1",
"gatsby-plugin-nprogress": "^2.3.10",
"gatsby-plugin-offline": "^3.2.37",
"gatsby-plugin-optimize-svgs": "^1.0.4",
"gatsby-plugin-postcss": "^3.0.1",
"gatsby-plugin-react-helmet": "^3.3.14",
"gatsby-plugin-sharp": "^2.6.43",
"gatsby-plugin-sitemap": "^2.4.17",
"gatsby-plugin-smoothscroll": "^1.2.0",
"gatsby-plugin-transition-link": "^1.20.2",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-autolink-headers": "^2.3.16",
"gatsby-remark-copy-linked-files": "^2.3.19",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "^3.3.40",
"gatsby-remark-prismjs": "^3.5.16",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-remark-responsive-iframe": "^2.4.17",
"gatsby-remark-smartypants": "^2.3.13",
"gatsby-source-filesystem": "^2.3.37",
"gatsby-transformer-cloudinary": "^1.1.3",
"gatsby-transformer-remark": "^2.8.47",
"gatsby-transformer-sharp": "^2.5.20",
"gsap": "^3.5.0",
"invariant": "^2.2.4",
"lodash": "^4.17.20",
"netlify-cms-app": "^2.12.27",
"netlify-cms-media-library-cloudinary": "^1.3.5",
"postcss-import": "^13.0.0",
"react": "^17.0.1",
"react-cookie-consent": "^6.0.0",
"react-disqus-comments": "^1.4.0",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-helmet-async": "^1.0.7",
"react-reveal": "^1.2.2",
"tailwindcss": "^1.9.1"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.12.1",
"@babel/plugin-transform-flow-strip-types": "^7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.1",
"autoprefixer": "9.8.6",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.1",
"babel-preset-gatsby": "0.5.14",
"browserslist": "4.14.5",
"concurrently": "5.3.0",
"eslint": "7.11.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.21.4",
"eslint-watch": "7.0.0",
"flow-bin": "^0.133.0",
"flow-typed": "^3.2.1",
"gh-pages": "3.1.0",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.1",
"jest-cli": "26.6.1",
"lost": "8.3.1",
"postcss": "^8.0.0",
"postcss-pxtorem": "5.1.1",
"react-test-renderer": "17.0.1",
"rimraf": "3.0.2",
"stylelint": "13.7.2",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.18.0"
}
}