-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "orbit-db-starter-blog",
"private": true,
"description": "A starter for a blog powered by Orbit-DB and IPFS",
"version": "0.1.0",
"author": "Nico Krause nico.krause@le-space.de",
"homepage": "https://github.com/gatsbyjs/gatsby-starter-blog#readme",
"keywords": [
"gatsby"
],
"license": "0BSD",
"repository": {
"type": "git",
"url": "git+https://github.com/gatsbyjs/gatsby-starter-blog.git"
},
"scripts": {
"create": "webpack",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && webpack --env ENVIRONMENT=production --config webpack.common.js",
"start": "export NODE_OPTIONS=--openssl-legacy-provider && webpack-dev-server --env ENVIRONMENT=development --open --config webpack.common.js"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
],
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-private-methods",
{
"loose": true
}
],
[
"@babel/plugin-transform-private-property-in-object",
{
"loose": true
}
]
]
},
"resolutions": {
"acorn": "npm:acorn-with-stage3"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.6.10",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"chakra-ui-contextmenu": "^1.0.4",
"chakra-ui-markdown-renderer": "^4.1.0",
"ethers": "^5.7.0",
"framer-motion": "^4.1.17",
"ipfs": "^0.59.1",
"mobx": "^6.6.1",
"mobx-react": "^7.5.2",
"moment": "^2.29.4",
"orbit-db": "^0.28.6",
"orbit-db-identity-provider": "0.4.0",
"orbit-db-io": "1.0.2",
"orbit-db-keystore": "^1.0.0",
"pretty-browser-log": "^1.0.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.35.0",
"react-markdown": "^8.0.3",
"react-moment": "^1.1.2",
"react-router-dom": "^5.0.1",
"react-seo-component": "^2.0.2",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.2.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^5.2.7",
"dotenv": "^16.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.2",
"sass": "^1.53.1",
"sass-loader": "^10.3.2",
"style-loader": "^2.0.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.1",
"webpack-dev-server": "^4.9.4",
"webpack-merge": "^4.2.2"
}
}