This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 2.02 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
{
"name": "web3-workshop",
"version": "1.0.0",
"description": "An OrbitDB Workshop",
"main": "index.js",
"scripts": {
"create": "webpack",
"start": "export NODE_OPTIONS=--openssl-legacy-provider && webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbitdb/web3-workshop.git"
},
"keywords": [
"workshop",
"orbitdb",
"tutorial"
],
"author": "shamb0t",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbitdb/web3-workshop/issues"
},
"homepage": "https://github.com/orbitdb/web3-workshop#readme",
"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
}
]
]
},
"dependencies": {
"ipfs": "^0.59.0",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"orbit-db": "^0.28.6",
"orbit-db-identity-provider": "^0.3.0",
"orbit-db-io": "1.0.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.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.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^5.2.7",
"html-webpack-plugin": "^4.5.2",
"sass": "^1.53.0",
"sass-loader": "^10.3.1",
"style-loader": "^2.0.0",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.3"
},
"resolutions": {
"acorn": "npm:acorn-with-stage3"
}
}