forked from wesbos/wesbos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.65 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
{
"name": "wes-bos-blog",
"description": "Wes Bos Site",
"version": "1.0.0",
"author": "Wes Bos <[email protected]>",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@mdx-js/react": "^2.2.1",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"file-type": "^18.0.0",
"gatsby": "^5.4.0",
"gatsby-parallel-runner": "^1.3.0",
"gatsby-plugin-google-analytics": "^5.4.0",
"gatsby-plugin-image": "^3.4.0",
"gatsby-plugin-layout": "^4.4.0",
"gatsby-plugin-mdx": "^5.4.0",
"gatsby-plugin-prettier-build": "^0.4.4",
"gatsby-plugin-react-helmet": "^6.4.0",
"gatsby-plugin-sharp": "^5.4.0",
"gatsby-plugin-snipcartv3": "^2.3.3",
"gatsby-plugin-styled-components": "^6.4.0",
"gatsby-remark-autolink-headers": "^6.4.0",
"gatsby-remark-copy-linked-files": "^6.4.0",
"gatsby-remark-embedder": "^6.0.1",
"gatsby-remark-images": "^7.4.0",
"gatsby-remark-responsive-iframe": "^6.4.0",
"gatsby-remark-smartypants": "^6.4.0",
"gatsby-remark-vscode": "^3.3.1",
"gatsby-source-filesystem": "^5.4.0",
"gatsby-transformer-remark": "^6.4.0",
"gatsby-transformer-sharp": "^5.4.0",
"github-slugger": "^2.0.0",
"isomorphic-fetch": "^3.0.0",
"netlify-lambda": "^2.0.15",
"netlify-plugin-gatsby-cache": "^0.3.2",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.7.1",
"resize-observer-polyfill": "^1.5.1",
"speakingurl": "^14.0.1",
"styled-components": "^5.3.6",
"theme-cobalt2": "^2.1.6",
"waait": "^1.0.5"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react-helmet": "^6.1.6",
"@types/styled-components": "^5.1.26",
"babel-eslint": "^10.1.0",
"eslint": "^8.31.0",
"eslint-config-wesbos": "^3.2.0",
"expand-url": "^0.1.3",
"prettier": "^2.8.2"
},
"homepage": "https://wesbos.com",
"keywords": [
"gatsby",
"wesbos"
],
"eslintConfig": {
"extends": [
"wesbos"
],
"rules": {
"react/prop-types": 0
}
},
"scripts": {
"dev": "gatsby develop",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"lint:fix": "eslint --ext .js,.jsx --ignore-pattern public . --fix",
"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' node scrape-tips.js"
}
}