-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.46 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
{
"name": "adrian-sanchez",
"private": true,
"description": "A data science blog powered by Gatsby",
"version": "0.1.0",
"author": "Adrián Sánchez <adrian@ianalytics.org>",
"dependencies": {
"@types/react-dom": "^16.9.8",
"bootstrap": "^4.5.0",
"dotenv": "^8.2.0",
"fuse.js": "^6.4.0",
"gatsby": "^2.21.37",
"gatsby-image": "^2.4.4",
"gatsby-plugin-feed": "^2.5.10",
"gatsby-plugin-google-analytics": "^2.3.1",
"gatsby-plugin-mailchimp": "^5.2.2",
"gatsby-plugin-manifest": "^2.4.5",
"gatsby-plugin-offline": "^3.2.16",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sass": "^2.3.2",
"gatsby-plugin-sharp": "^2.6.4",
"gatsby-remark-copy-linked-files": "^2.3.2",
"gatsby-remark-images": "^3.3.4",
"gatsby-remark-katex": "^3.3.10",
"gatsby-remark-prismjs": "^3.5.10",
"gatsby-remark-responsive-iframe": "^2.4.2",
"gatsby-remark-smartypants": "^2.3.1",
"gatsby-source-filesystem": "^2.3.4",
"gatsby-transformer-remark": "^2.8.27",
"gatsby-transformer-sharp": "^2.5.2",
"gatsby-transformer-yaml": "^2.4.10",
"katex": "^0.12.0",
"node-sass": "^4.14.1",
"prismjs": "^1.20.0",
"react": "^16.12.0",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"gh-pages": "^3.1.0",
"prettier": "2.0.5",
"typescript": "^3.9.3"
},
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"deploy": "gatsby clean && gatsby build && gh-pages -d public",
"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",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"lint:fix": "eslint --fix --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx"
}
}