-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·58 lines (58 loc) · 1.51 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
{
"name": "usehooks",
"version": "1.0.0",
"author": "Gabe Ragland",
"dependencies": {
"@analytics/google-analytics": "^0.4.0",
"analytics": "^0.5.5",
"babel-plugin-styled-components": "^1.11.0",
"gatsby": "^2.24.14",
"gatsby-paginate": "^1.1.1",
"gatsby-plugin-catch-links": "^2.3.11",
"gatsby-plugin-feed": "^2.5.11",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-styled-components": "^3.3.10",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-vscode": "^3.0.1",
"gatsby-source-filesystem": "^2.3.23",
"gatsby-transformer-remark": "^2.8.28",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-syntax-highlighter": "^13.0.0",
"serve": "^11.3.2",
"styled-components": "^5.1.1",
"unfetch": "^4.1.0"
},
"license": "MIT",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"start": "serve public/",
"format": "prettier --write '{gatsby-*.js,src/**/*.{js,jsx,json,css}}'",
"now-build": "npm run build",
"deploy": "vercel",
"deploy:prod": "vercel --prod"
},
"devDependencies": {
"eslint": "^7.5.0",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{gatsby-*.js,src/**/*.{js,jsx,json,css}}": [
"npm run format"
]
},
"engines": {
"node": "12.x"
}
}