-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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
{
"name": "blag",
"private": true,
"description": "A blog.",
"version": "0.1.0",
"author": "Alex Birdsall <[email protected]>",
"scripts": {
"build": "gatsby build",
"watch": "ls gatsby-config.js | entr -r gatsby develop",
"format": "prettier --write \"src/**/*.{js,jsx,json,md}\"",
"check": "prettier --check \"src/**/*.{js,jsx,json,md}\"",
"start": "gatsby develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build && bin/deploy"
},
"dependencies": {
"@mdx-js/react": "^2.0.0",
"d3": "^5.14.2",
"gatsby": "^4",
"gatsby-image": "^2.2.31",
"gatsby-plugin-manifest": "^4",
"gatsby-plugin-mdx": "4.4.0",
"gatsby-plugin-offline": "^5",
"gatsby-plugin-react-helmet": "^5",
"gatsby-plugin-sharp": "^4",
"gatsby-remark-autolink-headers": "^5",
"gatsby-remark-footnotes": "0.0.8",
"gatsby-remark-images": "^6",
"gatsby-remark-prismjs": "^6",
"gatsby-source-filesystem": "^4",
"gatsby-transformer-remark": "^5",
"gatsby-transformer-sharp": "^4",
"prismjs": "^1.17.1",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.8.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-transform-private-methods": "^7.24.1",
"babel-preset-gatsby": "^3.13.2",
"chalk": "^5.3.0",
"gh-pages": "^6.1.1",
"prettier": "^1.19.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ambirdsall/ambirdsall.github.io"
}
}