-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.37 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
{
"name": "meganesulli.com",
"private": true,
"description": "The personal website for Megan Sullivan.",
"version": "0.1.0",
"author": "Megan Sullivan <[email protected]>",
"engines": {
"node": "18.14.0",
"npm": "9.3.1"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.1.19",
"@mdx-js/react": "^2.1.5",
"@sindresorhus/slugify": "^1.1.2",
"gatsby": "^5.4.2",
"gatsby-plugin-feed": "^5.2.0",
"gatsby-plugin-google-gtag": "^5.2.0",
"gatsby-plugin-image": "^3.2.0",
"gatsby-plugin-mdx": "^5.2.0",
"gatsby-plugin-netlify": "^5.1.0",
"gatsby-plugin-react-helmet": "^6.2.0",
"gatsby-plugin-sharp": "^5.2.0",
"gatsby-remark-autolink-headers": "^6.2.0",
"gatsby-remark-images": "^7.2.0",
"gatsby-source-filesystem": "^5.2.0",
"gatsby-transformer-remark": "^6.2.0",
"node-fetch": "^2.6.9",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.43.0",
"reading-time": "^1.5.0",
"remark-gfm": "^3.0.0",
"remark-mdx-code-meta": "^2.0.0",
"typeface-dancing-script": "^1.1.13",
"typeface-quicksand": "^1.1.13",
"typeface-ribeye-marrow": "^1.1.13"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"babel-jest": "^29.3.1",
"babel-preset-gatsby": "^3.4.0",
"eslint": "^8.29.0",
"eslint-plugin-mdx": "^2.0.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint:content": "eslint . --ext md,mdx",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"build:test": "./utils/build-test.sh",
"test": "npm run build:test && jest",
"test:watch": "npm run build:test && jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/meganesu/personal-site-v2"
},
"bugs": {
"url": "https://github.com/meganesu/personal-site-v2/issues"
}
}