-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 2.24 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
{
"name": "ddot-info",
"private": true,
"description": "GTFS => A schedule browser",
"version": "1.1.0",
"author": "Jimmy McBroom <[email protected]>",
"contributors": [
"Jimmy McBroom",
"Jessica McInchak"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.11",
"@graphile-contrib/pg-simplify-inflector": "^6.0.0",
"@graphile/postgis": "^0.1.0",
"@mdx-js/mdx": "^1.6.17",
"@turf/bbox": "^6.0.1",
"gatsby": "^4.25.7",
"gatsby-image": "^3.11.0",
"gatsby-plugin-google-gtag": "^5.13.1",
"gatsby-plugin-layout": "^3.4.0",
"gatsby-plugin-manifest": "^4.4.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-offline": "^5.4.0",
"gatsby-plugin-postcss": "^5.4.0",
"gatsby-plugin-react-helmet": "^5.4.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-source-filesystem": "^4.4.0",
"gatsby-source-pg": "^1.0.0-rc.0",
"gatsby-transformer-sharp": "^4.4.0",
"mapbox-gl": "^1.12.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-animate-height": "^2.0.23",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-transition-group": "^4.4.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"tailwindcss": "^1.8.10"
},
"devDependencies": {
"@tailwindcss/custom-forms": "^0.2.1",
"prettier": "2.1.1"
},
"resolutions": {
"graphql": "^15.4.0",
"graphql-compose": "^7.25.0",
"webpack": "^5.24.2"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"proxy": {
"/.netlify/functions": {
"target": "http://localhost:57961",
"pathRewrite": {
"^/\\.netlify/functions": ""
}
}
}
}