-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
101 lines (101 loc) · 2.96 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "gatsby-mlh-fellow",
"description": "A map to find all the MLH Fellows",
"version": "0.0.1",
"author": "Karan Sheth <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@mdx-js/react": "^1.6.6",
"bootstrap": "^4.5.0",
"dotenv": "^8.2.0",
"gatsby": "^2.21.33",
"gatsby-plugin-graphql-codegen": "^2.7.1",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-mdx": "^1.2.26",
"gatsby-plugin-modal-routing": "^1.2.0",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-react-leaflet": "^2.0.13",
"gatsby-plugin-sass": "^2.3.1",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-source-github-api": "^0.2.1",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.3",
"leaflet": "^1.6.0",
"lodash": "^4.17.19",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0",
"react-leaflet": "^2.7.0",
"react-leaflet-enhanced-marker": "^1.0.15",
"react-leaflet-markercluster": "^2.0.0",
"react-select": "^3.1.0",
"reactstrap": "^8.5.1"
},
"devDependencies": {
"@types/leaflet": "^1.5.16",
"@types/mdx-js__react": "^1.5.2",
"@types/node-geocoder": "^3.24.1",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/react-leaflet": "^2.5.2",
"@types/react-leaflet-markercluster": "^2.0.0",
"@types/react-select": "^3.0.14",
"@types/reactstrap": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.2",
"enzyme": "^3.11.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"gatsby-plugin-ts-config": "^0.2.3",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"node-geocoder": "^3.27.0",
"typescript": "^3.9.6"
},
"keywords": [
"gatsby",
"sass",
"leaflet",
"mapping",
"maps"
],
"license": "MIT",
"scripts": {
"build": "gatsby build --log-pages",
"bump": "npm version",
"clean": "gatsby clean",
"develop": "gatsby develop",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc --noEmit",
"start": "yarn develop",
"serve": "gatsby serve",
"test": "jest --config ./config/jest.config.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn lint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/colbyfayock/gatsby-starter-leaflet"
},
"bugs": {
"url": "https://github.com/colbyfayock/gatsby-starter-leaflet/issues"
}
}