forked from PatKuz/WinHacks2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.15 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": "class-connect",
"version": "1.0.0",
"private": true,
"description": "ClassConnect",
"author": "Victor Vicente",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"bootstrap": "^4.6.0",
"firebase": "^8.3.1",
"gatsby": "^3.1.2",
"gatsby-cli": "^3.1.0",
"gatsby-image": "^2.2.44",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.2.48",
"gatsby-plugin-react-helmet": "^3.1.24",
"gatsby-plugin-sharp": "^2.4.13",
"gatsby-plugin-sitemap": "^2.2.30",
"gatsby-plugin-styled-components": "^4.1.0",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-styled-components-dark-mode": "^1.1.1",
"gatsby-transformer-sharp": "^2.3.19",
"lodash": "^4.17.21",
"lodash.omit": "^4.5.0",
"prop-types": "^15.7.2",
"randomatic": "^3.1.1",
"reach": "^1.0.1",
"react": "^17.0.1",
"react-bootstrap": "^1.5.2",
"react-bootstrap-range-slider": "^2.0.2",
"react-chip-input": "^1.1.0",
"react-circular-progressbar": "^2.0.4",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"recompose": "^0.30.0",
"styled-components": "^5.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@typescript-eslint/eslint-plugin": "2.x",
"@typescript-eslint/parser": "2.x",
"babel-eslint": "10.x",
"babel-preset-gatsby": "^0.5.8",
"eslint": "6.x",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.1.2",
"prettier-check": "^2.0.0"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --max-warnings=0"
],
"src/**/*.{js,jsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}