This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
118 lines (118 loc) · 3.73 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "coreyja-blog",
"private": true,
"description": "My coreyja blog written in Gatsby",
"version": "0.0.0",
"author": "Corey Alexander <[email protected]>",
"bugs": {
"url": "https://github.com/coreyja/coreyja-blog/issues"
},
"dependencies": {
"@apollo/client": "^3.3.19",
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@coreyja/typeface-alternate-gothic1": "0.0.1",
"@coreyja/typeface-hack-nerd-font": "0.0.60",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/pro-light-svg-icons": "^5.15.3",
"@fortawesome/pro-regular-svg-icons": "^5.15.3",
"@fortawesome/pro-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.4",
"gatsby": "^2.32.9",
"gatsby-image": "^2.11.0",
"gatsby-plugin-feed": "^2.13.1",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.9.0",
"gatsby-plugin-s3": "^0.3.1",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.14.3",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-tags": "^2.3.7",
"gatsby-plugin-typography": "^2.12.0",
"gatsby-remark-copy-linked-files": "^2.9.0",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.11.1",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-remark-responsive-iframe": "^2.11.0",
"gatsby-remark-smartypants": "^2.10.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-source-git": "^1.1.0",
"gatsby-transformer-remark": "^2.16.1",
"gatsby-transformer-sharp": "^2.12.0",
"node-sass": "^4.12.0",
"prismjs": "^1.23.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"typeface-oswald": "^1.1.13",
"typography": "^0.16.19"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/introspection": "^1.18.2",
"@graphql-codegen/typescript": "^1.21.0",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@graphql-codegen/typescript-react-apollo": "^2.2.4",
"@types/react-helmet": "^6.1.1",
"@types/typography": "^0.16.3",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"gatsby-plugin-eslint": "^2.0.8",
"gatsby-plugin-ts-config": "^0.2.3",
"husky": "^4.3.8",
"lighthouse": "^7.5.0",
"lighthouse-batch": "^6.1.0",
"lint-staged": "^10.5.4",
"prettier": "^2.1.2",
"typescript": "^3.9.7"
},
"homepage": "https://github.com/coreyja/coreyja-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/coreyja/coreyja-blog.git"
},
"scripts": {
"build": "gatsby build",
"test": "yarn run lint && yarn run type:test",
"develop": "gatsby develop",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"start": "yarn run develop",
"serve": "gatsby serve",
"type:test": "tsc --noEmit",
"deploy": "gatsby-plugin-s3 deploy",
"ggl-types": "graphql-codegen --config codegen.yml",
"ggl-types:watch": "graphql-codegen --config codegen.yml -w"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,tsx}": [
"yarn lint --fix"
],
"*.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}