-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.66 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
{
"name": "blog",
"private": true,
"description": "A starter for a blog powered by Gatsby and Markdown",
"version": "0.1.0",
"author": "Kyle Mathews <mathews.kyle@gmail.com>",
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"dependencies": {
"@jlengstorf/get-share-image": "^0.7.1",
"@juggle/resize-observer": "^3.2.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@react-three/cannon": "^0.5.4",
"@react-three/drei": "^3.3.0",
"babel-plugin-styled-components": "^1.12.0",
"gatsby": "^3.0.2",
"gatsby-image": "^3.0.0",
"gatsby-plugin-canonical-urls": "^3.0.0",
"gatsby-plugin-feed-mdx": "^1.1.0",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-mdx": "^2.0.0",
"gatsby-plugin-offline": "^4.0.0",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-sharp": "^3.0.0",
"gatsby-plugin-styled-components": "^4.0.0",
"gatsby-plugin-typography": "^2.12.0",
"gatsby-remark-copy-linked-files": "^2.10.0",
"gatsby-remark-images": "^4.0.0",
"gatsby-remark-prismjs": "^4.0.0",
"gatsby-remark-responsive-iframe": "^3.0.0",
"gatsby-remark-smartypants": "^3.0.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-transformer-sharp": "^3.0.0",
"prettier": "^2.2.1",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dom-confetti": "^0.1.4",
"react-helmet": "^5.2.1",
"react-spring": "^9.0.0-rc.3",
"react-three-fiber": "^5.3.18",
"react-typography": "^0.16.19",
"react-use-gesture": "^7.0.16",
"react-use-measure": "^2.0.3",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^5.2.1",
"three": "0.124.0",
"tinycolor2": "^1.4.2",
"typeface-merriweather": "0.0.72",
"typeface-montserrat": "0.0.75",
"typography": "^0.16.19",
"typography-theme-wordpress-2016": "^0.16.19",
"use-sound": "^1.0.2",
"vec-la": "^1.5.0"
},
"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 \"**/*.{js,jsx,json,md,mdx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \"",
"react-spring-issue-1078": "find node_modules -path \\*@react-spring/\\*/package.json -exec sed -i.bak 's/\"sideEffects\": false/\"sideEffects\": true/g' {} +",
"postinstall": "npm run react-spring-issue-1078"
}
}