-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.42 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
{
"name": "gatsby-starter-blog",
"private": true,
"description": "A starter for a blog powered by Gatsby and Markdown",
"version": "1.0.0",
"author": "Kyle Mathews <[email protected]>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"gatsby": "^4.25.4",
"gatsby-cli": "^5.14.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-addsocialshare-share": "^1.0.1",
"gatsby-plugin-feed": "^4.25.0",
"gatsby-plugin-google-analytics": "^4.25.0",
"gatsby-plugin-manifest": "^4.25.0",
"gatsby-plugin-offline": "^5.25.0",
"gatsby-plugin-react-helmet": "^5.25.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-plugin-tslint": "0.0.2",
"gatsby-plugin-typescript": "^4.24.0",
"gatsby-plugin-typography": "^4.25.0",
"gatsby-remark-copy-linked-files": "^5.25.0",
"gatsby-remark-images": "^6.25.0",
"gatsby-remark-prismjs": "^6.25.0",
"gatsby-remark-responsive-iframe": "^5.25.0",
"gatsby-remark-smartypants": "^5.25.0",
"gatsby-remark-social-cards": "^0.4.1",
"gatsby-source-filesystem": "^4.25.0",
"gatsby-transformer-remark": "^5.25.1",
"gatsby-transformer-sharp": "^4.25.0",
"prismjs": "^1.29.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-typography": "^0.16.23",
"typeface-merriweather": "^1.1.13",
"typeface-montserrat": "1.1.13",
"typography": "^0.16.24",
"typography-theme-wordpress-2016": "^0.16.19"
},
"devDependencies": {
"@types/react": "^17.0.38",
"@types/react-dom": "^18.0.2",
"@types/typography": "^0.16.8",
"prettier": "^3.4.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "github:react-native-community/async-storage",
"tslint-react": "^5.0.0",
"typescript": "^5.7.2"
},
"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",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"type-check": "tsc --noEmit",
"lint": "tslint --project ."
}
}