-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.01 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
{
"name": "rmust.me",
"description": "RMust.me",
"version": "1.1.0",
"author": "Rustem Mustfin <mustafin.rustem@gmail.com>",
"dependencies": {
"gatsby": "2.24.83",
"gatsby-image": "2.4.21",
"gatsby-plugin-catch-links": "2.3.15",
"gatsby-plugin-feed": "2.5.17",
"gatsby-plugin-google-analytics": "2.3.19",
"gatsby-plugin-lodash": "3.3.13",
"gatsby-plugin-manifest": "2.4.35",
"gatsby-plugin-nprogress": "2.3.13",
"gatsby-plugin-offline": "3.2.35",
"gatsby-plugin-react-helmet": "3.3.14",
"gatsby-plugin-sass": "2.3.19",
"gatsby-plugin-sharp": "2.6.43",
"gatsby-plugin-sitemap": "2.4.17",
"gatsby-plugin-twitter": "2.3.12",
"gatsby-remark-autolink-headers": "2.3.15",
"gatsby-remark-copy-linked-files": "2.3.19",
"gatsby-remark-images": "3.3.37",
"gatsby-remark-prismjs": "3.5.16",
"gatsby-remark-responsive-iframe": "2.4.17",
"gatsby-remark-smartypants": "2.3.13",
"gatsby-source-filesystem": "2.3.35",
"gatsby-transformer-remark": "2.8.44",
"gatsby-transformer-sharp": "2.5.19",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"prismjs": "^1.22.0",
"react": "^16.14.0",
"react-disqus-comments": "^1.4.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"react-share": "^4.3.1",
"react-twitter-widgets": "^1.9.5",
"url-join": "^4.0.1"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"gatsby-plugin-goatcounter": "^0.4.0",
"gh-pages": "^3.1.0",
"prettier": "^2.1.2",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"sass": "^1.27.0",
"stylefmt": "^6.0.3",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"write-good": "^1.0.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"deploy-prod": "now && now alias && now rm rmust.me --safe --yes",
"now-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"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}