-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.28 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
{
"name": "scottelundgren.github.io",
"private": true,
"description": "",
"version": "1.0.0",
"author": "Scott Lundgren",
"bugs": {
"url": "https://github.com/scottelundgren/scottelundgren.github.io/issues"
},
"dependencies": {
"disqus-react": "^1.0.11",
"gatsby": "^3.1.0",
"gatsby-plugin-canonical-urls": "^3.2.0",
"gatsby-plugin-feed": "^3.2.0",
"gatsby-plugin-google-gtag": "^3.1.0",
"gatsby-plugin-image": "^1.1.0",
"gatsby-plugin-offline": "^4.1.0",
"gatsby-plugin-react-helmet": "^4.1.0",
"gatsby-plugin-sass": "^4.1.0",
"gatsby-plugin-sharp": "^3.1.0",
"gatsby-plugin-sitemap": "^3.2.0",
"gatsby-remark-copy-linked-files": "^3.1.0",
"gatsby-remark-images": "^4.1.0",
"gatsby-remark-katex": "^4.1.0",
"gatsby-remark-prismjs": "^4.1.0",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-transformer-remark": "^3.1.0",
"gatsby-transformer-sharp": "^3.1.0",
"gatsby-transformer-yaml": "^3.1.0",
"katex": "^0.10.0",
"lodash": "^4.17.21",
"node-sass": "^5.0.0",
"prismjs": "^1.23.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.24.0",
"eslint-plugin-react": "^7.23.2",
"gh-pages": "^3.1.0",
"prettier": "^2.2.1"
},
"homepage": "https://github.com/scottelundgren/scottelundgren.github.io",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/scottelundgren/scottelundgren.github.io.git"
},
"scripts": {
"build": "gatsby build",
"deploy": "gatsby build && gh-pages -d public -b main",
"develop": "gatsby develop",
"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 .",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
}
}