forked from wesbos/wesbos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.75 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.75 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "wes-bos-blog",
"description": "Wesssss Site",
"version": "1.0.0",
"author": "Wes Bos <wesbos@gmail.com>",
"engines": {
"node": "16.13.1"
},
"dependencies": {
"@mdx-js/loader": "1.6.22",
"@mdx-js/mdx": "1.6.22",
"@mdx-js/react": "^1.6.22",
"core-js": "^3.19.2",
"date-fns": "^2.27.0",
"dotenv": "^10.0.0",
"esm": "^3.2.25",
"file-type": "^17.0.0",
"gatsby": "^4.24.6",
"gatsby-image": "^3.11.0",
"gatsby-parallel-runner": "^1.3.0",
"gatsby-plugin-feed": "^4.24.0",
"gatsby-plugin-google-analytics": "^4.24.0",
"gatsby-plugin-image": "^2.24.0",
"gatsby-plugin-layout": "^3.24.0",
"gatsby-plugin-manifest": "^4.24.0",
"gatsby-plugin-mdx": "^3.3.0",
"gatsby-plugin-nprogress": "^4.24.0",
"gatsby-plugin-offline": "^5.24.0",
"gatsby-plugin-prettier-build": "^0.4.4",
"gatsby-plugin-react-helmet": "^5.24.0",
"gatsby-plugin-remove-trailing-slashes": "^4.3.0",
"gatsby-plugin-sharp": "^4.24.0",
"gatsby-plugin-snipcartv3": "^2.3.3",
"gatsby-plugin-styled-components": "^5.24.0",
"gatsby-plugin-twitter": "^4.24.0",
"gatsby-remark-autolink-headers": "^5.24.0",
"gatsby-remark-copy-linked-files": "^5.24.0",
"gatsby-remark-embedder": "^5.0.0",
"gatsby-remark-images": "^6.24.0",
"gatsby-remark-responsive-iframe": "^5.24.0",
"gatsby-remark-shiki": "^0.3.0",
"gatsby-remark-smartypants": "^5.24.0",
"gatsby-remark-vscode": "^3.3.1",
"gatsby-source-filesystem": "^4.24.0",
"gatsby-transformer-remark": "^5.24.0",
"gatsby-transformer-sharp": "^4.24.0",
"html-entities": "^2.3.2",
"isomorphic-fetch": "^3.0.0",
"netlify-lambda": "^2.0.15",
"netlify-plugin-gatsby-cache": "^0.3.2",
"normalize.css": "^8.0.1",
"prism-react-renderer": "^1.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icons": "^4.3.1",
"react-youtube": "^7.13.1",
"remark-autolink-headings": "^7.0.1",
"resize-observer-polyfill": "^1.5.1",
"speakingurl": "^14.0.1",
"string.prototype.replaceall": "^1.0.6",
"styled-components": "^5.3.3",
"theme-cobalt2": "^2.1.6",
"waait": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.16.0",
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-wesbos": "^3.1.4",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"expand-url": "^0.1.3",
"gh-pages": "^3.2.3",
"glob": "^7.2.0",
"prettier": "^2.5.0",
"typescript": "^4.5.2"
},
"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",
"build-gatsby": "gatsby build",
"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"
}
}