2013-11-18 01:08:13 +01:00
|
|
|
{
|
2018-07-11 17:56:13 +02:00
|
|
|
"name": "@kremalicious/blog",
|
|
|
|
"version": "4.0.0",
|
|
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
2018-07-20 16:02:05 +02:00
|
|
|
"description": "Blog of Designer & Developer Matthias Kretschmann",
|
2015-06-07 03:11:46 +02:00
|
|
|
"homepage": "https://kremalicious.com",
|
2015-06-07 00:44:18 +02:00
|
|
|
"license": "MIT",
|
2018-07-11 17:56:13 +02:00
|
|
|
"main": "index.js",
|
2015-11-20 15:53:49 +01:00
|
|
|
"scripts": {
|
2018-09-24 22:28:07 +02:00
|
|
|
"start": "gatsby develop",
|
2018-11-02 15:13:22 +01:00
|
|
|
"build": "npm run rename:scrypt && gatsby build && npm run copy",
|
2018-09-30 03:11:08 +02:00
|
|
|
"ssr": "npm run build && serve -s public/",
|
2018-10-26 00:54:55 +02:00
|
|
|
"rename:scrypt": "sed -i -e 's|./build/Release/scrypt|scrypt|g' node_modules/scrypt/index.js",
|
2018-11-02 15:13:22 +01:00
|
|
|
"copy": "cp -R content/media/ public",
|
2018-09-30 03:11:08 +02:00
|
|
|
"format": "run-p format:js format:css format:md format:yaml",
|
|
|
|
"format:js": "prettier-eslint --write 'src/**/*.{js,jsx}'",
|
|
|
|
"format:css": "prettier-stylelint --write",
|
|
|
|
"format:md": "prettier --write \"**/*.md\" --no-semi",
|
|
|
|
"format:yaml": "prettier --write \"**/*.y?(a)ml\"",
|
|
|
|
"lint:js": "eslint --ext .js,.jsx .",
|
2018-07-11 17:56:13 +02:00
|
|
|
"lint:css": "stylelint ./src/**/*.{css,scss}",
|
2018-09-30 03:11:08 +02:00
|
|
|
"lint:md": "markdownlint \"**/*.md\"",
|
|
|
|
"lint:yaml": "prettier --list-different \"**/*.y?(a)ml\"",
|
|
|
|
"lint": "run-p --continue-on-error lint:js lint:css lint:yaml",
|
2018-07-11 17:56:13 +02:00
|
|
|
"test": "npm run lint",
|
2018-07-21 19:26:11 +02:00
|
|
|
"deploy": "./scripts/deploy.sh",
|
2018-09-24 01:09:50 +02:00
|
|
|
"new": "babel-node ./scripts/new.js"
|
2015-11-20 15:53:49 +01:00
|
|
|
},
|
2017-05-28 04:24:33 +02:00
|
|
|
"browserslist": [
|
2018-10-22 21:42:41 +02:00
|
|
|
"last 2 versions"
|
2017-05-28 04:24:33 +02:00
|
|
|
],
|
2015-05-31 20:23:26 +02:00
|
|
|
"dependencies": {
|
2018-09-14 00:35:40 +02:00
|
|
|
"dms2dec": "^1.1.0",
|
2018-09-07 13:08:01 +02:00
|
|
|
"fast-exif": "^1.0.1",
|
2018-10-16 22:47:47 +02:00
|
|
|
"fraction.js": "^4.0.10",
|
2018-11-06 20:52:59 +01:00
|
|
|
"gatsby": "^2.0.40",
|
2018-10-30 18:19:43 +01:00
|
|
|
"gatsby-image": "^2.0.18",
|
|
|
|
"gatsby-plugin-catch-links": "^2.0.6",
|
2018-09-27 21:14:22 +02:00
|
|
|
"gatsby-plugin-favicon": "^3.1.4",
|
2018-10-30 18:19:43 +01:00
|
|
|
"gatsby-plugin-feed": "^2.0.9",
|
2018-09-18 11:10:36 +02:00
|
|
|
"gatsby-plugin-lunr": "^1.2.0",
|
2018-08-29 00:14:58 +02:00
|
|
|
"gatsby-plugin-matomo": "^0.5.0",
|
2018-11-05 23:36:59 +01:00
|
|
|
"gatsby-plugin-meta-redirect": "^1.1.1",
|
|
|
|
"gatsby-plugin-offline": "^2.0.12",
|
2018-10-30 18:19:43 +01:00
|
|
|
"gatsby-plugin-react-helmet": "^3.0.1",
|
2018-11-01 21:13:54 +01:00
|
|
|
"gatsby-plugin-sass": "^2.0.3",
|
2018-11-06 20:52:59 +01:00
|
|
|
"gatsby-plugin-sharp": "^2.0.12",
|
2018-10-30 18:19:43 +01:00
|
|
|
"gatsby-plugin-sitemap": "^2.0.2",
|
2018-09-24 22:28:07 +02:00
|
|
|
"gatsby-plugin-svgr": "^2.0.0-alpha",
|
2018-10-03 15:08:46 +02:00
|
|
|
"gatsby-plugin-webpack-size": "^0.0.3",
|
2018-09-18 11:10:36 +02:00
|
|
|
"gatsby-redirect-from": "^0.1.1",
|
2018-11-05 23:36:59 +01:00
|
|
|
"gatsby-remark-autolink-headers": "^2.0.10",
|
2018-10-30 18:19:43 +01:00
|
|
|
"gatsby-remark-copy-linked-files": "^2.0.6",
|
2018-09-26 22:28:01 +02:00
|
|
|
"gatsby-remark-highlights": "^1.3.4",
|
2018-11-06 20:52:59 +01:00
|
|
|
"gatsby-remark-images": "^2.0.6",
|
2018-10-30 18:19:43 +01:00
|
|
|
"gatsby-remark-smartypants": "^2.0.6",
|
2018-11-01 21:13:54 +01:00
|
|
|
"gatsby-source-filesystem": "^2.0.7",
|
2018-10-30 18:19:43 +01:00
|
|
|
"gatsby-transformer-remark": "^2.1.11",
|
2018-11-06 20:52:59 +01:00
|
|
|
"gatsby-transformer-sharp": "^2.1.8",
|
2018-07-11 17:56:13 +02:00
|
|
|
"graphql": "^0.13.2",
|
2018-10-22 19:02:34 +02:00
|
|
|
"intersection-observer": "^0.5.1",
|
2018-09-25 22:32:38 +02:00
|
|
|
"load-script": "^1.0.0",
|
2018-11-05 23:36:59 +01:00
|
|
|
"node-sass": "^4.10.0",
|
2018-07-22 01:40:26 +02:00
|
|
|
"nord": "^0.2.1",
|
2018-11-05 23:36:59 +01:00
|
|
|
"pigeon-maps": "^0.11.6",
|
2018-09-14 00:35:40 +02:00
|
|
|
"pigeon-marker": "^0.3.4",
|
2018-10-24 14:58:27 +02:00
|
|
|
"react": "^16.6.0",
|
2018-10-14 21:48:38 +02:00
|
|
|
"react-blockies": "^1.4.0",
|
2018-09-18 11:10:36 +02:00
|
|
|
"react-clipboard.js": "^2.0.1",
|
2018-10-24 14:58:27 +02:00
|
|
|
"react-dom": "^16.6.0",
|
2018-07-11 17:56:13 +02:00
|
|
|
"react-helmet": "^5.2.0",
|
2018-09-25 22:32:38 +02:00
|
|
|
"react-modal": "^3.6.1",
|
2018-11-06 20:52:59 +01:00
|
|
|
"react-pose": "^4.0.1",
|
2018-08-14 21:12:30 +02:00
|
|
|
"react-qr-svg": "^2.1.0",
|
2018-07-19 02:22:01 +02:00
|
|
|
"react-time": "^4.3.0",
|
2018-09-27 20:03:03 +02:00
|
|
|
"react-transition-group": "^2.5.0",
|
2018-10-26 00:54:55 +02:00
|
|
|
"slugify": "^1.3.2",
|
2018-10-22 21:07:53 +02:00
|
|
|
"web3": "^1.0.0-beta.36"
|
2015-05-31 20:23:26 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-09-24 01:09:50 +02:00
|
|
|
"@babel/node": "^7.0.0",
|
|
|
|
"@babel/preset-env": "^7.1.0",
|
2018-09-27 20:03:03 +02:00
|
|
|
"babel-eslint": "^10.0.1",
|
2018-10-27 14:23:06 +02:00
|
|
|
"eslint": "^5.8.0",
|
2018-09-23 22:42:59 +02:00
|
|
|
"eslint-config-prettier": "^3.1.0",
|
|
|
|
"eslint-loader": "^2.1.1",
|
2018-07-11 17:56:13 +02:00
|
|
|
"eslint-plugin-graphql": "^2.1.1",
|
2018-10-07 12:38:50 +02:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.1.2",
|
2018-10-01 08:18:50 +02:00
|
|
|
"eslint-plugin-prettier": "^3.0.0",
|
2018-08-21 15:38:08 +02:00
|
|
|
"eslint-plugin-react": "^7.11.1",
|
2018-11-01 19:35:18 +01:00
|
|
|
"fs-extra": "^7.0.0",
|
2018-09-24 01:09:50 +02:00
|
|
|
"markdownlint": "^0.11.0",
|
|
|
|
"markdownlint-cli": "^0.13.0",
|
2018-09-30 03:11:08 +02:00
|
|
|
"npm-run-all": "^4.1.3",
|
2018-09-29 23:05:14 +02:00
|
|
|
"ora": "^3.0.0",
|
2018-09-23 22:42:59 +02:00
|
|
|
"prettier": "^1.14.3",
|
2018-09-30 03:11:08 +02:00
|
|
|
"prettier-eslint-cli": "^4.7.1",
|
2018-07-11 17:56:13 +02:00
|
|
|
"prettier-stylelint": "^0.4.2",
|
2018-10-30 18:08:07 +01:00
|
|
|
"stylelint": "^9.7.0",
|
2018-07-21 22:21:00 +02:00
|
|
|
"stylelint-config-css-modules": "^1.3.0",
|
2018-07-18 23:04:01 +02:00
|
|
|
"stylelint-config-standard": "^18.2.0",
|
2018-10-23 23:34:18 +02:00
|
|
|
"stylelint-scss": "^3.3.2"
|
2015-05-31 20:23:26 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2018-07-11 17:56:13 +02:00
|
|
|
"node": "^10.0.0"
|
2015-05-31 20:23:26 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2018-07-11 17:56:13 +02:00
|
|
|
"url": "https://github.com/kremalicious/blog.git"
|
2015-05-31 20:23:26 +02:00
|
|
|
}
|
2013-11-18 01:08:13 +01:00
|
|
|
}
|