-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 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
{
"name": "personal-site",
"description": "Zach Lysobey's personal site",
"version": "1.0.0",
"author": "Zach Lysobey <zlysobey+dev@gmail.com>",
"dependencies": {
"gatsby": "^2.32.13",
"gatsby-link": "^2.11.0",
"gatsby-plugin-google-analytics": "^2.11.0",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-remark-autolink-headers": "^2.11.0",
"gatsby-remark-prismjs": "^3.13.0",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-remark": "^2.16.1",
"prismjs": "^1.23.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-headroom": "^3.1.1",
"react-helmet": "^5.2.1"
},
"keywords": [
"gatsby",
"blog"
],
"license": "MIT",
"engines": {
"node": "14.x",
"npm": ">=6.12"
},
"scripts": {
"build": "gatsby build",
"build:travis": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"prettier --write --print-width 80 --tab-width 4 --no-semi --single-quote --trailing-comma all --arrow-parens always",
"git add"
]
},
"devDependencies": {
"husky": "^6.0.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/zachlysobey/personal-site"
}
}