-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.18 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.18 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
72
{
"name": "takeaways",
"description": "TakeAwayPlacesIndex",
"version": "1.0.0",
"author": "Keisuke Sato <[email protected]>",
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@contentful/rich-text-react-renderer": "^14.1.1",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@types/facepaint": "^1.2.1",
"@types/node": "^14.0.27",
"@types/react-helmet": "^6.1.0",
"@types/react-map-gl": "^5.2.6",
"date-fns": "^2.22.1",
"facepaint": "^1.2.1",
"gatsby": "^2.24.27",
"gatsby-awesome-pagination": "^0.3.6",
"gatsby-image": "^2.4.14",
"gatsby-plugin-emotion": "^4.3.10",
"gatsby-plugin-feed": "^2.13.1",
"gatsby-plugin-graphql-codegen": "^2.6.1",
"gatsby-plugin-manifest": "^2.4.21",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-react-helmet-canonical-urls": "^1.4.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sharp": "^2.6.24",
"gatsby-plugin-typescript": "^2.4.16",
"gatsby-source-contentful": "^2.3.34",
"gatsby-source-filesystem": "^2.3.23",
"gatsby-transformer-remote-filesystem": "^1.0.0",
"gatsby-transformer-sharp": "^2.5.12",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^6.1.0",
"react-map-gl": "^5.2.7",
"react-responsive-carousel": "^3.2.9",
"react-share": "^4.2.1",
"react-twitter-embed": "^3.0.3",
"ress": "^3.0.0",
"typescript": "^3.9.7"
},
"keywords": [
"gatsby, typescript"
],
"license": "Apache-2.0",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"husky": ">=4",
"lint-staged": ">=10.2.11",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts*": "prettier --write",
"*.js*": "prettier --write"
}
}