forked from dkarski/minimal-resume-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.94 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
62
63
64
65
66
67
68
69
{
"name": "minimal-resume-theme",
"version": "2.0.0",
"description": "Gatsby.js & Styled Components - Minimal Resume Theme",
"homepage": "https://dkarski.github.io/minimal-resume-theme/",
"keywords": [
"minimal",
"resume",
"theme",
"cv"
],
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"predeploy": "npm run build",
"deploy": "gh-pages -d public",
"preload-fonts": "gatsby-preload-fonts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,html}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"gatsby": "^2.18.12",
"gatsby-image": "^2.2.34",
"gatsby-plugin-manifest": "^2.2.34",
"gatsby-plugin-offline": "^3.0.30",
"gatsby-plugin-preload-fonts": "^1.0.22",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-remove-trailing-slashes": "^2.1.17",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "^2.3.5",
"gatsby-plugin-sitemap": "^2.2.24",
"gatsby-plugin-zopfli": "^1.3.2",
"gatsby-source-filesystem": "^2.1.40",
"gatsby-transformer-json": "^2.2.22",
"gatsby-transformer-sharp": "^2.3.7",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"styled-components": "^4.4.1",
"styled-media-query": "^2.1.2",
"styled-system": "^5.1.4"
},
"devDependencies": {
"esm": "^3.2.25",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^4.0.0-beta.11",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^1.19.1",
"react-static-generator": "^0.1.2"
}
}