forked from lightninginabot/liab_website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 2.31 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
{
"name": "dylan-lacom-personal-site",
"description": "Dylan La Com's blog at https://www.dylanla.com",
"version": "1.0.0",
"author": "Dylan La Com <[email protected]>",
"dependencies": {
"gatsby": "^5.13.3",
"gatsby-plugin-feed": "^5.13.1",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-postcss": "^6.13.1",
"gatsby-plugin-react-helmet": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-styled-components": "^6.13.1",
"gatsby-plugin-typography": "^5.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-remark-video": "^1.2.5",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"polished": "^4.3.1",
"postcss-browser-reporter": "^0.7.0",
"postcss-import": "^16.0.1",
"postcss-preset-env": "^9.4.0",
"postcss-reporter": "^7.1.0",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-typography": "^0.16.23",
"styled-components": "^6.1.8",
"typeface-merriweather": "1.1.13",
"typeface-source-sans-pro": "^1.1.13",
"typography": "^0.16.24",
"typography-theme-us-web-design-standards": "^0.16.19"
},
"scripts": {
"dev": "gatsby develop",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Error: no test specified\" && exit 1",
"serve": "gatsby serve",
"build": "gatsby build",
"clean": "gatsby clean",
"deploy": "gatsby build --prefix-paths && s3-deploy './public/**' --cwd './public/' --bucket www.dylanla.com --deleteRemoved --gzip xml,html,htm,js,css,ttf,otf,svg,txt --profile default --distId E1YTDQN5752D05 --invalidate '/*'",
"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"
},
"devDependencies": {
"s3-deploy": "^1.4.0"
},
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
}
}