forked from taniarascia/taniarascia.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.81 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
{
"name": "taniarascia.com",
"description": "Personal website running on Gatsby, React, and Node.js.",
"version": "1.0.1",
"author": "Tania Rascia <[email protected]>",
"repository": "[email protected]:taniarascia/taniarascia.com",
"dependencies": {
"eslint-utils": "^1.4.1",
"gatsby": "^2.13.13",
"gatsby-image": "^2.2.4",
"gatsby-plugin-catch-links": "^2.1.0",
"gatsby-plugin-feed": "^2.3.2",
"gatsby-plugin-google-analytics": "^2.1.1",
"gatsby-plugin-manifest": "^2.2.1",
"gatsby-plugin-netlify": "^2.0.13",
"gatsby-plugin-nprogress": "^2.1.0",
"gatsby-plugin-offline": "^2.2.1",
"gatsby-plugin-react-helmet": "3.1.0",
"gatsby-plugin-sass": "^2.0.10",
"gatsby-plugin-sharp": "2.2.12",
"gatsby-plugin-sitemap": "2.2.1",
"gatsby-plugin-twitter": "^2.0.13",
"gatsby-plugin-typography": "^2.2.10",
"gatsby-remark-autolink-headers": "^2.1.0",
"gatsby-remark-copy-linked-files": "^2.1.0",
"gatsby-remark-images": "3.1.3",
"gatsby-remark-prismjs": "3.3.1",
"gatsby-source-filesystem": "^2.0.23",
"gatsby-transformer-remark": "2.6.2",
"gatsby-transformer-sharp": "2.2.1",
"lodash": "^4.17.13",
"lodash.kebabcase": "^4.1.1",
"moment": "^2.24.0",
"node-sass": "^4.11.0",
"prismjs": "^1.15.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-github-btn": "^1.0.5",
"react-helmet": "^5.2.0",
"react-typography": "^0.16.19",
"sharp": "^0.22.1",
"typography": "^0.16.19",
"url-join": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"cli-glob": "^0.1.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.1",
"stylefmt": "^6.0.3",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.0.0",
"write-good": "^1.0.1"
},
"keywords": [
"tania rascia",
"development",
"dev",
"tutorials",
"tech",
"articles",
"blog"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "yarn run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "yarn run clean && yarn 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",
"check": "npx npm-check-updates -u"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}