-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
61 lines (61 loc) · 1.72 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
{
"private": true,
"name": "react-liquidswipe",
"description": "Apple Clay Devices Showcase",
"license": "MIT",
"author": "Ashutosh Hathidara",
"version": "1.0.0",
"scripts": {
"build": "npm install && gatsby build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"serve": "gatsby serve",
"start": "gatsby develop"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.14",
"@react-icons/all-files": "^4.1.0",
"@theme-ui/typography": "^0.3.5",
"gatsby": "^2.26.1",
"gatsby-image": "^2.8.0",
"gatsby-plugin-fontawesome-css": "^1.0.0",
"gatsby-plugin-google-analytics": "^2.8.0",
"gatsby-plugin-manifest": "^2.9.0",
"gatsby-plugin-offline": "^3.7.0",
"gatsby-plugin-react-helmet": "^3.7.0",
"gatsby-plugin-sharp": "^2.11.1",
"gatsby-plugin-sitemap": "^2.9.0",
"gatsby-plugin-theme-ui": "^0.3.5",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-source-filesystem": "^2.8.0",
"gatsby-transformer-json": "^2.8.0",
"gatsby-transformer-sharp": "^2.9.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-spring": "^8.0.27",
"react-use-gesture": "^9.0.0-beta.11",
"styled-components": "^5.2.1",
"theme-ui": "^0.3.5"
},
"devDependencies": {
"all-contributors-cli": "^6.19.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"prettier-package-json": "^2.1.3"
},
"keywords": [
"gatsby"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,js,css,md}": "prettier --write"
}
}