-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "equithon-main",
"description": "Equithon Main Website",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"lint": "prettier --single-quote --list-different 'src/**/*.jsx' 'test/*.test.js' 'test/*.test.jsx'; eslint --ext .jsx,.js src/"
},
"dependencies": {
"@firebase/app": "^0.3.14",
"@firebase/firestore": "^0.9.3",
"@firebase/functions": "^0.3.7",
"firebase-admin": "^6.5.1",
"firebase-functions": "^2.2.1",
"gatsby": "^2.3.14",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sharp": "^2.0.32",
"gatsby-plugin-styled-components": "^3.0.7",
"gatsby-transformer-sharp": "^2.1.17",
"react": "^16.8.6",
"react-countup": "^4.1.2",
"react-device-detect": "^1.6.2",
"react-dom": "^16.8.6",
"react-google-recaptcha-v3": "^0.1.5",
"react-helmet": "^5.2.0",
"react-onclickoutside": "^6.8.0",
"react-pose": "^4.0.8",
"react-reveal": "^1.2.2",
"react-scroll": "^1.7.11",
"react-visibility-sensor": "^5.0.2",
"request-promise": "^4.2.4",
"styled-components": "^4.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"firebase-tools": "^6.5.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint --ext .jsx,.js src/ --fix",
"git add"
]
}
}