forked from wesbos/wesbos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.27 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
{
"name": "wes-bos-blog",
"description": "Wesssss Site",
"version": "1.0.0",
"author": "Wes Bos <wesbos@gmail.com>",
"engines": {
"node": ">=12.14.0"
},
"dependencies": {
"@mdx-js/loader": "1.5.8",
"@mdx-js/mdx": "1.5.8",
"@mdx-js/react": "^1.5.8",
"@mdx-js/tag": "0.20.3",
"core-js": "^3.6.5",
"date-fns": "^2.12.0",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"file-type": "^14.1.4",
"gatsby": "^2.20.27",
"gatsby-image": "^2.3.4",
"gatsby-parallel-runner": "^1.2.7",
"gatsby-plugin-feed": "^2.4.3",
"gatsby-plugin-google-analytics": "^2.2.4",
"gatsby-plugin-layout": "^1.2.3",
"gatsby-plugin-manifest": "^2.3.5",
"gatsby-plugin-mdx": "^1.1.9",
"gatsby-plugin-nprogress": "^2.2.3",
"gatsby-plugin-offline": "^3.1.4",
"gatsby-plugin-prettier-build": "^0.4.3",
"gatsby-plugin-react-helmet": "^3.2.4",
"gatsby-plugin-remove-trailing-slashes": "^2.2.3",
"gatsby-plugin-sharp": "^2.5.6",
"gatsby-plugin-styled-components": "^3.2.3",
"gatsby-plugin-twitter": "^2.3.0",
"gatsby-remark-autolink-headers": "^2.2.3",
"gatsby-remark-copy-linked-files": "^2.2.3",
"gatsby-remark-embedder": "^2.0.1",
"gatsby-remark-images": "^3.2.4",
"gatsby-remark-responsive-iframe": "^2.3.3",
"gatsby-remark-shiki": "^0.1.2",
"gatsby-remark-smartypants": "^2.2.3",
"gatsby-remark-vscode": "^2.0.3",
"gatsby-source-filesystem": "^2.2.4",
"gatsby-transformer-remark": "^2.7.3",
"gatsby-transformer-sharp": "^2.4.6",
"html-entities": "^1.3.1",
"isomorphic-fetch": "^2.2.1",
"netlify-lambda": "^1.6.3",
"normalize.css": "^8.0.1",
"prism-react-renderer": "^1.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-icons": "^3.9.0",
"react-youtube": "^7.11.2",
"remark-autolink-headings": "^6.0.0",
"resize-observer-polyfill": "^1.5.1",
"speakingurl": "^14.0.1",
"string.prototype.replaceall": "^1.0.3",
"styled-components": "^5.1.0",
"theme-cobalt2": "^2.1.6"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-wesbos": "0.0.19",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"expand-url": "^0.1.3",
"gh-pages": "^2.2.0",
"glob": "^7.1.6",
"prettier": "^2.0.4"
},
"homepage": "https://wesbos.com",
"keywords": [
"gatsby",
"wesbos"
],
"eslintConfig": {
"extends": [
"wesbos"
],
"rules": {
"react/prop-types": 0
}
},
"scripts": {
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby-parallel-runner",
"netlify": "netlify dev",
"deploy": "gatsby-parallel-runner --prefix-paths && gh-pages -d public",
"prebuild": "netlify-lambda install",
"scrape": "NODE_OPTIONS='--inspect=localhost:4444 -r esm' node scrape-tips.js"
}
}