-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.14 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
{
"name": "stasquatch.github.io",
"private": true,
"description": "Personal blog/about me site for a stasquatch technologist",
"version": "0.1.0",
"author": "stasquatch",
"dependencies": {
"@fontsource/lato": "^4.2.2",
"@fontsource/nunito-sans": "^4.2.2",
"@fontsource/source-code-pro": "^4.3.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"babel-plugin-styled-components": "^1.12.0",
"debounce": "^1.2.1",
"gatsby": "^3.1.1",
"gatsby-plugin-gatsby-cloud": "^2.0.0",
"gatsby-plugin-image": "^1.0.0",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-mdx": "^2.3.0",
"gatsby-plugin-offline": "^4.0.0",
"gatsby-plugin-page-creator": "^3.3.0",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-sharp": "^3.0.0",
"gatsby-plugin-styled-components": "^4.1.0",
"gatsby-plugin-use-query-params": "^1.0.1",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-sharp": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"styled-components": "^5.2.1",
"use-query-params": "^1.2.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^1.1.0",
"eslint": "^7.22.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-webpack-plugin": "^2.5.3",
"gatsby-plugin-eslint": "^3.0.0",
"gh-pages": "^3.2.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-styled-components": "^7.0.4",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"react-test-renderer": "^17.0.1"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"prepare": "husky install",
"deploy": "gatsby build && gh-pages -d public -b built"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}