-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.1 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.1 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
{
"name": "personal-blog",
"description": "Russell J Anderson's personal blog",
"version": "1.0.0",
"author": "Russell Anderson <russelljanderson@yahoo.com>",
"dependencies": {
"dotenv": "^4.0.0",
"gatsby": "^5.14.3",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-offline": "^6.13.2",
"gatsby-plugin-preact": "^7.13.1",
"gatsby-plugin-sass": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-twitter": "^5.13.1",
"gatsby-remark-autolink-headers": "^6.13.1",
"gatsby-remark-copy-linked-files": "^6.13.1",
"gatsby-remark-images": "^7.13.1",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-remark-responsive-iframe": "^6.13.1",
"gatsby-remark-smartypants": "^6.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-source-unsplash": "^2.0.0",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"lodash": "^4.17.21",
"node-sass": "^8.0.0",
"postcss": "8.4.38",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@types/node": "^20.12.12",
"gh-pages": "^5.0.0",
"prettier": "^1.16.4"
},
"homepage": "https://russelljanderson.com",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/vacas5/blog"
},
"scripts": {
"dev": "gatsby develop -p 3720",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "playwright test",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js'",
"develop": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby build && gh-pages -d public -b master",
"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",
"serve": "gatsby serve"
},
"engines": {
"node": ">=18.20.2 <19.0.0"
}
}