-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
113 lines (113 loc) · 4.48 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
106
107
108
109
110
111
112
113
{
"name": "stephencharlesweiss.com",
"private": true,
"description": "A personal blog using Gatsby and Markdown",
"version": "0.1.0",
"author": "Stephen Weiss <[email protected]>",
"dependencies": {
"@gatsby-contrib/gatsby-plugin-elasticlunr-search": "^3.0.2",
"@mdx-js/react": "^2.1.3",
"@netlify/plugin-gatsby": "^3.4.3",
"cloc": "^2.5.1",
"dayjs": "^1.8.19",
"gatsby": "^4.0.0",
"gatsby-plugin-feed": "^4.21.0",
"gatsby-plugin-image": "^2.21.0",
"gatsby-plugin-manifest": "^4.21.0",
"gatsby-plugin-mdx": "^4.1.0",
"gatsby-plugin-offline": "^5.21.0",
"gatsby-plugin-react-helmet": "^5.21.0",
"gatsby-plugin-sass": "^5.22.0",
"gatsby-plugin-sharp": "^4.21.0",
"gatsby-plugin-styled-components": "^5.21.0",
"gatsby-plugin-typescript": "^4.21.0",
"gatsby-remark-autolink-headers": "^5.21.0",
"gatsby-remark-copy-linked-files": "^5.21.0",
"gatsby-remark-embed-snippet": "^7.21.0",
"gatsby-remark-embedder": "^6.0.1",
"gatsby-remark-images": "^6.21.0",
"gatsby-remark-prismjs": "^6.21.0",
"gatsby-remark-reading-time": "^1.1.0",
"gatsby-remark-responsive-iframe": "^5.21.0",
"gatsby-remark-smartypants": "^5.21.0",
"gatsby-source-filesystem": "^4.21.1",
"gatsby-source-xkcd": "^1.0.0",
"gatsby-transformer-remark": "^5.21.0",
"gatsby-transformer-sharp": "^4.21.0",
"prismjs": "^1.24.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.0.0",
"remark-grid-tables": "^2.1.1",
"sass": "^1.54.8",
"styled-theming": "^2.2.0",
"use-debounce": "^8.0.3"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-transform-react-jsx-development": "^7.9.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^17.0.3",
"@graphql-eslint/eslint-plugin": "^3.10.7",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.5",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-plugin-styled-components": "^2.0.7",
"babel-preset-gatsby": "^2.21.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.18.0",
"gatsby-plugin-netlify": "^5.0.1",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.27",
"gatsby-remark-code-titles": "^1.1.0",
"husky": "^8.0.1",
"netlify-cli": "^11.5.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"styled-components": "^5.3.5",
"styled-system": "^5.1.4",
"stylelint": "^14.11.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.9.0",
"typescript": "^4.8.2"
},
"keywords": [
"gatsby",
"blog"
],
"license": "MIT",
"scripts": {
"analyze": "ANALYZE_BUNDLE_SIZE=true gatsby build",
"build": "npm run pre-build && gatsby build",
"clean": "rm -rf .cache && rm -rf public",
"dev": "gatsby develop",
"develop": "npm run dev",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"lint:css": "stylelint './src/**/*.jsx?'",
"nofilter": "export nofilter='true' && npm run dev",
"preview": "npm run nofilter",
"start": "npm run develop",
"pre-build": "npm run clean",
"publish:site": "netlify deploy",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"typecheck": "tsc --noEmit",
"updt:content": "git submodule update --remote"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"volta": {
"node": "12.18.3",
"yarn": "1.22.5"
}
}