rickvanlieshout.com/package.json

120 lines
3.9 KiB
JSON
Raw Normal View History

2016-03-12 01:28:19 +03:00
{
2020-07-08 23:44:23 +03:00
"version": "3.0.5",
2016-06-03 02:32:38 +03:00
"name": "gatsby-starter-lumen",
2018-11-09 20:08:48 +03:00
"description": "A minimal, lightweight and mobile-first starter for creating blazing-fast static blogs",
2016-03-12 01:28:19 +03:00
"main": "n/a",
"scripts": {
2018-11-09 20:08:48 +03:00
"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",
2019-04-08 11:53:56 -04:00
"flow": "flow",
2019-05-09 22:08:42 +03:00
"lint:js": "eslint --cache --ext .js,.jsx .",
2018-11-09 20:08:48 +03:00
"lint:scss": "stylelint \"src/**/*.scss\"",
2019-04-08 11:53:56 -04:00
"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"
2016-03-12 01:28:19 +03:00
},
2018-11-09 20:08:48 +03:00
"repository": "https://github.com/alxshelepenok/gatsby-starter-lumen",
"author": "Alexander Shelepenok <alxshelepenok@gmail.com>",
"license": "MIT",
2016-03-12 01:28:19 +03:00
"keywords": [
"gatsby",
2018-11-09 20:08:48 +03:00
"graphql",
"netlify",
"netlify-cms",
"pagination",
"categories",
"tags",
"prismjs",
2018-11-09 20:08:48 +03:00
"static",
"lost",
2017-02-05 18:45:57 +03:00
"blog",
"minimal",
2018-01-21 02:57:29 +03:00
"react",
"theme",
"starter",
"disqus"
2016-03-12 01:28:19 +03:00
],
"dependencies": {
"bluebird": "^3.7.2",
2019-02-15 16:56:55 -05:00
"classnames": "^2.2.6",
"codecov": "^3.7.2",
2020-09-09 15:55:14 +00:00
"gatsby": "^2.24.56",
2020-07-15 18:14:01 +00:00
"gatsby-link": "^2.4.13",
2020-07-10 10:31:07 +00:00
"gatsby-plugin-catch-links": "^2.3.11",
"gatsby-plugin-feed": "^2.5.11",
"gatsby-plugin-flow": "^1.3.11",
"gatsby-plugin-google-gtag": "^2.1.10",
2020-09-07 10:15:23 +00:00
"gatsby-plugin-manifest": "^2.4.28",
"gatsby-plugin-netlify": "^2.3.14",
"gatsby-plugin-netlify-cms": "^4.3.13",
"gatsby-plugin-offline": "^3.2.27",
"gatsby-plugin-optimize-svgs": "^1.0.4",
2020-07-10 10:31:07 +00:00
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sass": "^2.3.12",
2020-09-09 15:55:14 +00:00
"gatsby-plugin-sharp": "^2.6.34",
2020-08-28 14:12:57 +00:00
"gatsby-plugin-sitemap": "^2.4.12",
2020-09-07 10:15:23 +00:00
"gatsby-remark-autolink-headers": "^2.3.12",
"gatsby-remark-copy-linked-files": "^2.3.14",
"gatsby-remark-external-links": "0.0.4",
2020-09-07 10:15:23 +00:00
"gatsby-remark-images": "^3.3.29",
2020-08-28 14:12:57 +00:00
"gatsby-remark-katex": "^3.3.11",
"gatsby-remark-prismjs": "^3.5.11",
"gatsby-remark-relative-images": "^2.0.2",
2020-09-07 10:15:23 +00:00
"gatsby-remark-responsive-iframe": "^2.4.13",
2020-07-10 10:31:07 +00:00
"gatsby-remark-smartypants": "^2.3.10",
2020-09-09 15:55:14 +00:00
"gatsby-source-filesystem": "^2.3.29",
"gatsby-transformer-remark": "^2.8.34",
2020-09-04 18:33:53 +00:00
"gatsby-transformer-sharp": "^2.5.14",
2018-11-09 20:08:48 +03:00
"invariant": "^2.2.4",
"katex": "^0.12.0",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"netlify-cms-app": "^2.12.19",
"node-sass": "^4.14.1",
2018-11-09 20:08:48 +03:00
"normalize-scss": "^7.0.1",
"prismjs": "^1.21.0",
2020-03-19 20:10:58 +00:00
"react": "^16.13.1",
2019-01-21 17:17:53 +03:00
"react-disqus-comments": "^1.4.0",
2020-03-19 20:10:58 +00:00
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0"
2016-03-12 01:28:19 +03:00
},
"devDependencies": {
2020-09-03 16:08:35 +00:00
"@babel/core": "7.11.6",
"@babel/plugin-proposal-class-properties": "7.10.4",
2020-08-20 19:19:10 +00:00
"@babel/plugin-proposal-optional-chaining": "7.11.0",
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
2020-09-03 16:08:35 +00:00
"@babel/preset-env": "7.11.5",
"@babel/preset-react": "7.10.4",
"autoprefixer": "9.8.6",
2019-03-27 01:48:28 +03:00
"babel-core": "7.0.0-bridge.0",
2020-02-27 12:33:50 +00:00
"babel-eslint": "10.1.0",
2020-08-12 21:46:31 +00:00
"babel-jest": "26.3.0",
2020-09-07 10:15:23 +00:00
"babel-preset-gatsby": "0.5.9",
"browserslist": "4.14.0",
"concurrently": "5.3.0",
2020-08-20 19:56:23 +00:00
"eslint": "7.7.0",
2020-07-05 11:36:43 +00:00
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
2020-08-20 19:56:23 +00:00
"eslint-plugin-jest": "23.20.0",
2020-07-05 11:36:43 +00:00
"eslint-plugin-jsx-a11y": "6.3.1",
2020-08-20 19:56:23 +00:00
"eslint-plugin-react": "7.20.6",
2020-07-05 09:29:44 +00:00
"eslint-watch": "7.0.0",
"flow-bin": "^0.131.0",
"flow-typed": "^3.2.1",
"gh-pages": "3.1.0",
2019-04-08 11:53:56 -04:00
"identity-obj-proxy": "3.0.0",
"jest": "26.4.2",
"jest-cli": "26.4.2",
2019-02-13 12:55:23 +00:00
"lost": "8.3.1",
"postcss-pxtorem": "5.1.1",
"react-test-renderer": "16.13.1",
"rimraf": "3.0.2",
"stylelint": "13.6.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.18.0"
2016-03-12 01:28:19 +03:00
}
2017-10-31 00:25:25 +03:00
}