-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.94 KB
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
{
"name": "hannahswaim.co",
"description": "Portfolio site for artist Hannah Swaim.",
"version": "1.0.0",
"author": "Charlie Wright <charlie@cwgw.co>",
"dependencies": {
"@styled-system/css": "^5.1.5",
"babel-plugin-styled-components": "^1.5.1",
"gatsby": "^2.1.4",
"gatsby-image": "^2.0.29",
"gatsby-plugin-catch-links": "^2.0.11",
"gatsby-plugin-google-analytics": "^2.0.19",
"gatsby-plugin-manifest": "^2.0.17",
"gatsby-plugin-netlify": "^2.1.0",
"gatsby-plugin-offline": "^3.0.1",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-sharp": "^2.0.20",
"gatsby-plugin-sitemap": "^2.0.5",
"gatsby-plugin-styled-components": "^3.0.5",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images-contentful": "^2.0.8",
"gatsby-source-contentful": "^2.0.29",
"gatsby-source-filesystem": "^2.0.20",
"gatsby-transformer-json": "^2.1.8",
"gatsby-transformer-remark": "^2.2.5",
"gatsby-transformer-sharp": "^2.1.13",
"lodash": "^4.17.10",
"mousetrap": "^1.6.2",
"polished": "^3.0.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^6",
"react-modal": "^3.4.5",
"react-spring": "^8.0.7",
"styled-components": "^5.0.0",
"styled-system": "^5.1.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write '**/*.js'",
"scrape": "node scrape.js hannahswaimco",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.3",
"fs-extra": "^9",
"husky": "^4",
"lint-staged": "^10.2.6",
"prettier": "^2",
"request": "^2.88.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cwgw/hannahswaim.co"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn run format"
]
}
}