-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
118 lines (118 loc) · 3.52 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
{
"name": "tmac-website",
"description": "Website for the Texas Music Administrators Conference",
"version": "2.40.0",
"repository": {
"type": "git",
"url": "https://github.com/m2mathew/tmac-website"
},
"license": "MIT",
"scripts": {
"clean:gatsby": "gatsby clean",
"clean:purge": "rm -rf node_modules && yarn cache clean",
"dev": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint '**/*.{js,jsx,ts,tsx}' --fix",
"type-check": "tsc --pretty --noEmit"
},
"browserslist": [
"last 2 versions",
"safari >= 11",
"chrome >= 80",
"firefox >= 80"
],
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@emotion/babel-plugin": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.9",
"@sentry/gatsby": "^7.69.0",
"@sentry/integrations": "^7.69.0",
"@sentry/tracing": "^7.69.0",
"@sentry/types": "^7.69.0",
"babel-plugin-styled-components": "^2.0.7",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-preset-gatsby": "^2.25.0",
"clsx": "^1.2.1",
"core-js": "^3.27.2",
"date-fns": "^2.29.3",
"firebase": "^7.19.0",
"formik": "^2.2.9",
"gatsby": "^4.25.0",
"gatsby-cli": "^4.25.0",
"gatsby-plugin-canonical-urls": "4.24.0",
"gatsby-plugin-image": "^2.25.0",
"gatsby-plugin-react-helmet": "5.24.0",
"gatsby-plugin-sharp": "^4.25.0",
"gatsby-plugin-styled-components": "^5.25.0",
"gatsby-plugin-typescript": "^4.25.0",
"gatsby-plugin-typography": "4.24.0",
"gatsby-source-contentful": "7.22.0",
"gatsby-theme-material-ui": "^5.3.0",
"gatsby-theme-material-ui-top-layout": "^5.2.0",
"gray-percentage": "^2.0.0",
"hex2rgba": "0.0.1",
"jss": "^10.9.2",
"lodash.kebabcase": "^4.1.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-helmet": "^6.1.0",
"react-jss": "^10.9.2",
"react-to-print": "^2.14.11",
"react-typography": "^1.0.0-alpha.4",
"styled-components": "^5.3.6",
"typeface-space-mono": "^1.1.13",
"typeface-spectral": "^1.1.13",
"typography": "^1.0.0-alpha.4",
"typography-breakpoint-constants": "1.0.0-alpha.0",
"yup": "0.32.11"
},
"engines": {
"node": "^18.x",
"npm": "^6.x"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@types/gray-percentage": "^2.0.0",
"@types/node": "^18.11.18",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "5.1.26",
"@types/yup": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"babel-eslint": "^10.0.3",
"babel-preset-env": "^1.7.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"typescript": "^4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --verbose --fix"
]
}
}