-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.55 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
{
"name": "fuzzybat",
"private": true,
"description": "A simple tool for fuzzing coordinates of bat monitoring locations",
"version": "0.1.0",
"author": "Brendan C. Ward <bcward@consbio.org>",
"dependencies": {
"@mapbox/geo-viewport": "^0.4.0",
"@rebass/grid": "^6.0.0",
"@sentry/browser": "^5.4.3",
"babel-plugin-styled-components": "^1.10.2",
"gatsby": "^2.10.5",
"gatsby-image": "^2.2.3",
"gatsby-plugin-catch-links": "^2.1.0",
"gatsby-plugin-google-analytics": "^2.1.0",
"gatsby-plugin-manifest": "^2.2.0",
"gatsby-plugin-offline": "^2.2.0",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-sharp": "^2.2.1",
"gatsby-plugin-sitemap": "^2.2.0",
"gatsby-plugin-styled-components": "^3.1.0",
"gatsby-plugin-typography": "^2.3.0",
"gatsby-source-filesystem": "^2.1.1",
"gatsby-transformer-sharp": "^2.2.0",
"immutable": "^4.0.0-rc.12",
"mapbox-gl": "^0.53.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-ga": "^2.6.0",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"react-typography": "^0.16.19",
"rebass": "^3.1.1",
"styled-components": "^4.3.2",
"styled-system": "^4.2.4",
"typography": "^0.16.19",
"typography-theme-noriega": "^0.16.19"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"format": "prettier --write \"src/**/*.js\"",
"lint:scripts": "eslint './src/**/*.jsx' './src/**/*.js'",
"lint:styles": "stylelint './src/**/*.jsx' './src/**/*.js'",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"stylelint": "^9.10.1",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint:styles",
"pre-push": "yarn lint:scripts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/consbio/fuzzybat"
},
"bugs": {
"url": "https://github.com/consbio/fuzzybat/issues"
}
}