This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.4 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
{
"name": "rails.fm",
"description": "Listen to news, interviews, and discussions about Ruby & Rails.",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"gatsby",
"ruby",
"rails",
"podcast",
"react",
"typescript"
],
"contributors": [
"Andrew Mason <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/andrewmcodes/rails.fm"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "yarn run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write \"src/**/*.{ts,tsx,jsx,js,css,json,md}\"",
"lint": "prettier --check \"src/**/*.{ts,tsx,jsx,js,css,json,md}\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-brands-svg-icons": "^5.10.1",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"babel-plugin-styled-components": "^1.10.6",
"gatsby": "^2.18.7",
"gatsby-image": "^2.2.34",
"gatsby-plugin-config": "^1.0.7",
"gatsby-plugin-manifest": "^2.2.31",
"gatsby-plugin-nprogress": "^2.1.17",
"gatsby-plugin-offline": "^3.0.27",
"gatsby-plugin-postcss": "^2.2.1",
"gatsby-plugin-purgecss": "^5.0.0",
"gatsby-plugin-react-helmet": "^3.1.11",
"gatsby-plugin-react-svg": "^2.1.1",
"gatsby-plugin-sharp": "^2.3.5",
"gatsby-plugin-transition-link": "^1.17.7",
"gatsby-plugin-typescript": "^2.1.12",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-json": "^2.3.1",
"gatsby-transformer-sharp": "^2.3.7",
"intersection-observer": "^0.7.0",
"react": "^16.12.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"react-spring": "^8.0.27"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@tailwindcss/ui": "^0.1.3",
"@types/node": "^13.1.8",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-helmet": "^5.0.14",
"@types/styled-components": "^4.4.0",
"gatsby-plugin-sitemap": "^2.2.19",
"husky": "^4.0.10",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"rimraf": "3.0.0",
"tailwindcss": "^1.2.0",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,jsx,js,css,json,md}": [
"prettier --write",
"git add"
]
}
}