-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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
{
"name": "hashconnect-example",
"version": "0.1.0",
"description": "React example of connecting to a HashPack wallet via hashconnect",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/StarkTechLabs/hashconnect-example"
},
"author": "mstark5652",
"license": "SEE LICENSE IN LICENSE.md",
"scripts": {
"start": "rewp build --watch",
"build": "rewp build",
"serve": "http-server -S -C cert.pem -o",
"release": "export NODE_ENV=production && npm run build",
"lint": "standard ./src/**/*.js",
"lint:fix": "standard ./src/**/*.js --fix"
},
"devDependencies": {
"aws-sdk": "^2.1049.0",
"mime": "^2.6.0",
"rewp": "^0.6.1",
"standard": "^16.0.4"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@hashgraph/sdk": "^2.15.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.6",
"@mui/styles": "^5.2.3",
"hashconnect": "^0.1.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1"
}
}