-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
105 lines (105 loc) · 3.35 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
{
"name": "RBB-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"start": "gatsby develop",
"develop": "gatsby develop",
"clean": "gatsby clean",
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,d.ts}\"",
"lint": "eslint . --ext .jsx,.js,.tsx,.ts",
"cy:open": "cypress open",
"cy:run": "cypress run",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@reach/router": "^1.3.3",
"@reach/skip-nav": "0.10.3",
"@reach/visually-hidden": "0.10.2",
"@sentry/browser": "^5.27.3",
"axios": "^0.20.0",
"base-64": "^0.1.0",
"body-scroll-lock": "^3.0.3",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"gatsby": "^2.23.3",
"gatsby-cypress-endpoints": "0.0.6",
"gatsby-plugin-chakra-ui": "^0.1.4",
"gatsby-plugin-create-client-paths": "^2.3.4",
"gatsby-plugin-facebook-pixel": "^1.0.3",
"gatsby-plugin-google-analytics": "^2.3.4",
"gatsby-plugin-manifest": "^2.4.11",
"gatsby-plugin-netlify": "^2.3.4",
"gatsby-plugin-react-helmet": "^3.3.3",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-plugin-sitemap": "^2.4.5",
"gatsby-source-airtable": "^2.1.1",
"gatsby-source-filesystem": "^2.3.10",
"isomorphic-fetch": "^2.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-geocode": "^0.2.1",
"react-helmet": "^6.0.0",
"react-query": "^2.15.4",
"react-query-devtools": "^2.4.7",
"react-use": "^15.2.2",
"slugify": "^1.4.5",
"typeface-arvo": "^1.1.3",
"typeface-inter": "^3.12.0",
"use-cloudinary": "^3.0.1",
"whatwg-fetch": "^3.1.0"
},
"devDependencies": {
"@testing-library/cypress": "^6.0.0",
"@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.1.0",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"all-contributors-cli": "^6.16.0",
"axe-core": "^3.5.4",
"babel-eslint": "10.x",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.8",
"cypress": "^4.7.0",
"cypress-axe": "^0.8.1",
"eslint": "7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "4.0.8",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"lint-staged": "^10.2.8",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"start-server-and-test": "^1.11.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,d.ts,css,md}": "prettier --write",
"*.{js,jsx,ts,tsx}": "eslint"
}
}