-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.07 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
{
"name": "andysmith.me",
"private": true,
"description": "Personal website of Andy Smith, software engineer",
"version": "0.1.0",
"author": "Andy Smith",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"eslintIgnore": [
"/build/*",
"/scripts/*",
"/public/**/*"
],
"dependencies": {
"axios": "^0.27.2",
"classnames": "^2.2.6",
"dotenv": "^16.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-react": "^7.17.0",
"gatsby": "^4.22.0",
"gatsby-background-image": "^1.6.0",
"gatsby-plugin-google-analytics": "^4.22.0",
"gatsby-plugin-google-gtag": "^4.22.0",
"gatsby-plugin-image": "^2.22.0",
"gatsby-plugin-manifest": "^4.22.0",
"gatsby-plugin-offline": "^5.22.0",
"gatsby-plugin-react-helmet": "^5.22.0",
"gatsby-plugin-sass": "^5.22.0",
"gatsby-plugin-sharp": "^4.22.0",
"gatsby-source-contentful": "^7.20.0",
"gatsby-source-filesystem": "^4.22.0",
"gatsby-transformer-remark": "^5.22.0",
"gatsby-transformer-sharp": "^4.22.0",
"gbimage-bridge": "^0.2.2",
"html-react-parser": "^1.2.6",
"husky": "^8.0.1",
"lint-staged": "^9.5.0",
"moment": "^2.29.4",
"npm": "8.3.1",
"node-sass": "^7.0.1",
"prop-types": "^15.7.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-google-maps": "^9.4.5",
"react-helmet": "^6.1.0",
"react-highlight-words": "^0.18.0",
"react-icons": "^3.8.0",
"react-tooltip": "^4.2.19",
"recompose": "^0.30.0"
},
"devDependencies": {
"contentful-import": "^7.6.2",
"prettier": "^1.19.1"
}
}