-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.67 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dermot-hughes-blog",
"description": "Portfolio site for Dermot Hughes based on Ghost and Gatsby",
"version": "2.0.0",
"license": "MIT",
"author": "Dermot Hughes",
"homepage": "https://dermothughes.com",
"repository": {
"type": "git",
"url": "git+https://github.com/dermyhughes/gatsby-ghost-blog/.git"
},
"bugs": {
"url": "https://github.com/dermyhughes/gatsby-ghost-blog/issues"
},
"keywords": [
"gatsby",
"ghost"
],
"main": "n/a",
"scripts": {
"serve": "gatsby build && NODE_ENV=production gatsby serve",
"build": "gatsby build",
"start": "gatsby build && gatsby serve",
"generate-pdf": "node build-cv.js",
"generate-pdf:ci": "start-server-and-test start http://localhost:9000 generate-pdf",
"dev": "gatsby develop",
"develop": "gatsby develop",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"clean": "gatsby clean",
"prepare": "husky install"
},
"devDependencies": {
"concurrently": "^7.6.0",
"eslint": "^8.25.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-ghost": "2.16.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"prettier": "^2.7.1",
"sass": "^1.72.0",
"start-server-and-test": "^2.0.0"
},
"dependencies": {
"@gatsbyjs/reach-router": "^2.0.1",
"@tryghost/helpers": "1.1.74",
"@tryghost/helpers-gatsby": "2.0.4",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"babel-plugin-prismjs": "^2.1.0",
"cheerio": "1.0.0-rc.11",
"gatsby": "^5.14.0",
"gatsby-awesome-pagination": "0.3.8",
"gatsby-link": "^5.8.0",
"gatsby-plugin-catch-links": "5.7.0",
"gatsby-plugin-feed": "^5.7.0",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.12.3",
"gatsby-plugin-react-helmet": "^6.7.0",
"gatsby-plugin-sass": "^6.7.0",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-plugin-typescript": "^5.13.1",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-source-ghost": "^5.0.2",
"gatsby-transformer-sharp": "^5.13.1",
"lodash": "4.17.21",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"puppeteer": "^22.12.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"typescript": "^5.4.2",
"url": "0.11.0"
}
}