-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
74 lines (74 loc) · 1.9 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
{
"name": "orbit.fm",
"description": "Website for orbit.fm",
"version": "1.0.0",
"author": "Adam Garrett-Harris <[email protected]>",
"dependencies": {
"emotion": "^9.2.6",
"emotion-server": "^9.2.6",
"gatsby": "^2.13.40",
"gatsby-image": "^2.2.7",
"gatsby-plugin-emotion": "^2.0.6",
"gatsby-plugin-feed": "^2.3.5",
"gatsby-plugin-google-analytics": "^2.0.7",
"gatsby-plugin-netlify": "^2.0.3",
"gatsby-plugin-react-helmet": "^3.0.1",
"gatsby-plugin-sharp": "^2.0.10",
"gatsby-plugin-typography": "^2.2.1",
"gatsby-source-contentful": "^2.0.9",
"gatsby-source-filesystem": "^2.0.6",
"gatsby-transformer-json": "^2.1.5",
"gatsby-transformer-sharp": "^2.1.7",
"humanize-list": "^1.0.1",
"husky": "^1.1.2",
"left-pad": "^1.3.0",
"lint-staged": "^7.3.0",
"luxon": "^1.3.3",
"prop-types": "^15.6.0",
"react": "^16.8.6",
"react-audio-player": "^0.10.0",
"react-dom": "^16.8.6",
"react-emotion": "^9.2.6",
"react-helmet": "^5.2.0",
"react-redux": "^7.1.0",
"react-router-dom": "^4.3.1",
"react-typography": "^0.16.13",
"remarkable": "^1.7.1",
"slug": "^0.9.1",
"strip-tags": "^0.1.1",
"typography": "^0.16.17",
"typography-theme-alton": "^0.15.10"
},
"keywords": [
"website",
"gatsby",
"podcast"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --trailing-comma es5 --single-quote --write \"src/**/*.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"dotenv": "^6.0.0",
"prettier": "^1.9.2"
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"npm run format",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}