forked from uidotdev/usehooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·57 lines (57 loc) · 1.43 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
{
"name": "usehooks",
"version": "1.0.0",
"author": "Gabe Ragland",
"dependencies": {
"analytics": "^0.1.16",
"analytics-plugin-ga": "^0.1.4",
"babel-plugin-styled-components": "^1.10.6",
"gatsby": "^2.11.7",
"gatsby-paginate": "^1.1.0",
"gatsby-plugin-catch-links": "^2.1.0",
"gatsby-plugin-feed": "^2.3.1",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-styled-components": "^3.1.0",
"gatsby-remark-external-links": "0.0.4",
"gatsby-source-filesystem": "^2.1.1",
"gatsby-transformer-remark": "^2.5.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-syntax-highlighter": "^11.0.1",
"serve": "^11.0.2",
"styled-components": "^4.3.2",
"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": "now",
"deploy:prod": "now --prod"
},
"devDependencies": {
"eslint": "^5.16.0",
"gh-pages": "^2.0.1",
"husky": "^2.2.0",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{gatsby-*.js,src/**/*.{js,jsx,json,css}}": [
"npm run format",
"git add"
]
},
"engines": {
"node": "12.x"
}
}