-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
122 lines (122 loc) · 3.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "roadie-marketing-site",
"private": true,
"description": "The marketing site for https://roadie.io",
"version": "0.1.0",
"author": "David Tuite <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"browserslist": [
"defaults"
],
"dependencies": {
"@algolia/autocomplete-js": "^1.5.1",
"@algolia/autocomplete-theme-classic": "^1.5.1",
"@headlessui/react": "^1.4.1",
"@heroicons/react": "^1.0.4",
"@reach/router": "^1.3.4",
"@sentry/gatsby": "^6.16.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"algoliasearch": "^4.9.2",
"autoprefixer": "^10.3.5",
"babel-plugin-prismjs": "^2.0.1",
"babel-preset-gatsby": "^2.4.0",
"classnames": "^2.3.0",
"date-fns": "^2.22.1",
"gatsby": "^4.4.0",
"gatsby-plugin-algolia": "^0.25.0",
"gatsby-plugin-csp": "^1.1.3",
"gatsby-plugin-feed": "^4.4.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-gtag": "^5.10.0",
"gatsby-plugin-image": "^2.4.0",
"gatsby-plugin-manifest": "^4.4.0",
"gatsby-plugin-module-resolver": "^1.0.3",
"gatsby-plugin-netlify": "^4.4.0",
"gatsby-plugin-postcss": "^5.4.0",
"gatsby-plugin-react-helmet": "^5.4.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-plugin-twitter": "^4.4.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.25",
"gatsby-remark-autolink-headers": "^5.4.0",
"gatsby-remark-copy-linked-files": "^5.4.0",
"gatsby-remark-embed-video": "^3.2.1",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^6.4.0",
"gatsby-remark-prismjs": "^6.4.0",
"gatsby-remark-responsive-iframe": "^5.4.0",
"gatsby-remark-smartypants": "^5.4.0",
"gatsby-source-contentful": "^7.2.0",
"gatsby-source-filesystem": "^4.4.0",
"gatsby-transformer-remark": "^5.4.0",
"gatsby-transformer-sharp": "^4.25.0",
"husky": "^7.0.4",
"postcss": "^8.4.5",
"prismjs": "^1.24.0",
"react": "^17.0.2",
"react-burger-menu": "^3.0.6",
"react-dom": "^17.0.2",
"react-google-recaptcha": "^2.1.0",
"react-helmet": "^6.1.0",
"react-modal": "^3.14.2",
"react-tabs": "^4.2.1",
"react-use": "^17.2.4",
"remark-html": "^13.0.2",
"sharp": "^0.33.5",
"swagger-ui": "^5.9.1",
"swagger-ui-dist": "^5.9.1",
"tailwindcss": "^3.0.7"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/register": "^7.16.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^12.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
"cypress": "^13.11.0",
"enzyme": "^3.11.0",
"eslint": "^8.5.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.23.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss-apply": "^0.12.0",
"prettier": "2.5.1",
"sinon": "^12.0.1"
},
"homepage": "https://roadie.io",
"keywords": [
"infrastructure"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/RoadieHQ/marketing-site.git"
},
"scripts": {
"prebuild": "bash bin/fetch_api_docs.sh",
"build": "yarn run clean && gatsby build",
"tech-docs:build": "bash bin/convert_tech_docs.sh",
"tech-docs:clean": "rm -rf roadie-tech-docs",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "gatsby develop",
"start-with-env": "env $(cat .env | xargs) yarn start",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "cypress run",
"lint": "eslint src",
"preview": "yarn run build && netlify deploy --dir public",
"test:unit": "jest",
"prepare": "node_modules/.bin/husky install"
}
}