-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
71 lines (71 loc) · 2.18 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
{
"name": "gatsby-starter-book",
"private": true,
"description": "A starter for a book powered by Markdown",
"version": "0.1.0",
"author": "Sara Vieira",
"bugs": {
"url": "https://github.com/SaraVieira/gatsby-starter-book/issues"
},
"dependencies": {
"firacode": "^2.0.0",
"framer-motion": "1.8.4",
"gatsby": "2.19.12",
"gatsby-plugin-google-analytics": "2.1.35",
"gatsby-plugin-manifest": "2.2.41",
"gatsby-plugin-no-javascript": "2.0.5",
"gatsby-plugin-offline": "3.0.34",
"gatsby-plugin-react-helmet": "3.1.22",
"gatsby-plugin-sass": "^2.3.13",
"gatsby-plugin-sharp": "2.4.5",
"gatsby-remark-copy-linked-files": "2.1.37",
"gatsby-remark-images": "3.1.44",
"gatsby-remark-prismjs": "3.3.31",
"gatsby-remark-responsive-iframe": "2.2.32",
"gatsby-remark-smartypants": "2.1.21",
"gatsby-source-filesystem": "2.1.48",
"gatsby-transformer-remark": "2.6.50",
"gatsby-transformer-sharp": "2.3.14",
"node-sass": "^4.14.1",
"prism-theme-night-owl": "1.2.0",
"prism-themes": "^1.3.0",
"prismjs": "1.23.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-helmet": "5.2.1",
"react-markdown": "4.3.1",
"rehype-react": "4.0.1",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75"
},
"devDependencies": {
"cheerio": "^1.0.0-rc.3",
"epub-gen": "0.1.0",
"eslint": "^7.9.0",
"eslint-plugin-react": "^7.20.6",
"pdf-lib": "1.3.1",
"prettier": "^2.1.1",
"puppeteer": "2.1.1"
},
"homepage": "https://github.com/SaraVieira/gatsby-starter-book#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/SaraVieira/gatsby-starter-book.git"
},
"scripts": {
"build:site": "gatsby build",
"build:book": "node generate-book/pdf.js && GATSBY_SCRAPPER=1 gatsby build && node generate-book/epub.js",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint .",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"build": "npm run build:book && npm run build:site"
}
}