-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
{
"name": "gatsby-starter-leaflet",
"description": "A Gatsby starter with Leafet!",
"version": "0.2.2",
"author": "Colby Fayock <[email protected]>",
"dependencies": {
"axios": "^0.21.1",
"gatsby": "^2.24.47",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-react-leaflet": "2.0.13",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-source-filesystem": "^2.3.24",
"leaflet": "^1.6.0",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"react-leaflet": "^2.7.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-preset-gatsby": "^0.5.5",
"enzyme": "^3.11.0",
"eslint": "^7.7.0",
"eslint-config-zurgbot": "^0.0.7",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.4.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0"
},
"keywords": [
"gatsby",
"sass",
"leaflet",
"mapping",
"maps"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"format": "prettier-eslint --eslint-config-path ./config/eslint.config.js --write $PWD/'**/*.js'",
"lint": "eslint -c ./config/eslint.config.js . --ext .js",
"start": "yarn develop",
"serve": "gatsby serve",
"test": "jest --config ./config/jest.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"yarn format",
"yarn lint"
]
},
"repository": {
"type": "git",
"url": "https://github.com/colbyfayock/gatsby-starter-leaflet"
},
"bugs": {
"url": "https://github.com/colbyfayock/gatsby-starter-leaflet/issues"
}
}