-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.41 KB
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
{
"name": "frontend",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "babel.config.js",
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint ."
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browser": {
"buffer": "buffer",
"crypto": "crypto-browserify",
"stream": "stream-browserify",
"process": "process/browser.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@bsv/sdk": "^1.4.15",
"@bsv/wallet-toolbox": "^1.2.30",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.1",
"@mui/material": "^7.0.1",
"@mui/system": "^5.16.7",
"axios": "^1.7.9",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"html-webpack-plugin": "^5.6.3",
"pushdrop": "^0.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^19.0.0",
"react-markdown": "^9.0.3",
"react-router": "^7.1.5",
"react-router-dom": "^7.1.5",
"react-stl-viewer": "^2.5.0",
"react-toastify": "^11.0.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"use-async-effect": "^2.2.7",
"webpack": "^5.97.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-syntax-import-attributes": "^7.26.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"node-stdlib-browser": "^1.3.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"util": "^0.12.5",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0"
}
}