-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.11 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
{
"name": "brendan-reed-personal-site",
"private": true,
"description": "A personal website for Brendan Reed.",
"version": "1.0.0",
"license": "0BSD",
"scripts": {
"prebuild": "mkdir -p netlify/functions && cp -r src/api/* netlify/functions/",
"build": "gatsby build",
"develop": "gatsby develop",
"develop-https": "gatsby develop --https --cert-file ./certificates/localhost.crt --key-file ./certificates/localhost.key --host 0.0.0.0",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"prepare": "husky install"
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"axios": "^1.3.2",
"babel-plugin-styled-components": "^1.12.0",
"fast-xml-parser": "^4.5.1",
"framer-motion": "^12.1.0",
"g": "^2.0.1",
"gatsby": "^5.5.0",
"gatsby-cli": "^5.5.0",
"gatsby-plugin-image": "^3.6.0",
"gatsby-plugin-manifest": "^5.5.0",
"gatsby-plugin-mdx": "^5.6.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-sass": "^6.5.0",
"gatsby-plugin-sharp": "^5.8.1",
"gatsby-plugin-styled-components": "^6.5.0",
"gatsby-source-filesystem": "^5.6.0",
"gatsby-transformer-remark": "^6.5.0",
"gatsby-transformer-sharp": "^5.6.0",
"node-fetch": "2",
"prettier-plugin-tailwindcss": "^0.2.8",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet": "^6.1.0",
"react-media": "^1.10.0",
"sass": "^1.32.6",
"stringify": "^5.2.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"dotenv": "^16.4.7",
"eslint": "^8.34.0",
"eslint-plugin-react": "^7.32.2",
"express": "^4.21.2",
"gatsby-plugin-postcss": "^6.7.0",
"husky": ">=6",
"lint-staged": ">=10",
"open": "^10.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"tailwindcss": "^3.2.7"
},
"repository": {
"type": "git",
"url": "https://github.com/breedy231/site"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write",
"*.js": "eslint"
}
}