This repository has been archived by the owner on Sep 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.6 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
{
"private": true,
"name": "belgian-beers",
"description": "Belgian beers",
"author": "Kalin Chernev",
"main": "n/a",
"scripts": {
"clean": "rm -rf public",
"build": "gatsby build --prefix-paths",
"deploy": "gh-pages -d public",
"develop": "gatsby develop",
"lint": "eslint .",
"start": "gatsby develop",
"test:lint": "npm run lint",
"test": "npm-run-all -p test:* -cn",
"release": "run-s clean build deploy"
},
"keywords": [
"belgian",
"beers",
"gatsby",
"react"
],
"homepage": "https://github.com/kalinchernev/belgian-beers#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kalinchernev/belgian-beers.git"
},
"bugs": {
"url": "https://github.com/kalinchernev/belgian-beers/issues"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"gatsby": "^1.9.45",
"gatsby-link": "^1.6.17",
"gatsby-plugin-react-helmet": "^1.0.5",
"gatsby-plugin-typography": "^1.7.10",
"gatsby-source-filesystem": "^1.5.1",
"gatsby-transformer-json": "^1.0.7",
"gatsby-transformer-remark": "^1.7.15",
"typography-theme-github": "^0.15.10"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.8.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"gatsby-cli": "^1.1.7",
"gh-pages": "^1.0.0",
"lint-staged": "^4.2.3",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.3"
}
}