This repository was archived by the owner on Oct 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.48 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.48 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
{
"name": "erdbox",
"version": "1.12.1",
"description": "Drop-in widget for connecting Elrond dapps to user wallets",
"main": "dist/erdbox.js",
"types": "dist/erdbox.d.ts",
"author": "erdDEV team (https://erd.dev)",
"homepage": "https://github.com/erdDEVcode/erdbox",
"license": "AGPLv3",
"files": [
"dist",
"README.md",
"package.json",
"package-lock.json",
"CHANGELOG.md",
"LICENSE.md"
],
"repository": {
"type": "git",
"url": "https://github.com/erdDEVcode/connect.git"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/ledgerhq__hw-transport-u2f": "^4.21.2",
"@types/ledgerhq__hw-transport-webusb": "^4.70.1",
"@types/lodash.get": "^4.4.6",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-modal": "^3.10.6",
"husky": "^4.3.0",
"react-svg-loader": "^3.0.3",
"semantic-release": "^17.2.2",
"ts-loader": "^8.0.10",
"typedoc": "^0.19.2",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"release": "semantic-release",
"types": "tsc src/types/external.ts --declaration --emitDeclarationOnly --declarationDir dist && mv dist/external.d.ts dist/erdbox.d.ts",
"dev": "npm run types && webpack serve",
"build-docs": "rm -rf ./docs-api && typedoc",
"build": "npm run types && NODE_ENV=production webpack"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@elrondnetwork/elrond-core-js": "^1.28.0",
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@ledgerhq/hw-transport-u2f": "^5.36.0-deprecated",
"@ledgerhq/hw-transport-webusb": "^5.36.0",
"@tippyjs/react": "^4.2.0",
"bigval": "^1.3.1",
"bip39": "^3.0.2",
"bn.js": "^5.1.3",
"buffer": "^6.0.1",
"crypto-browserify": "^3.12.0",
"decimal.js": "^10.2.1",
"elrond-data": "^1.2.0",
"elrondjs": "^2.6.0",
"emotion-styled-utils": "^2.3.2",
"emotion-theming": "^10.0.27",
"framer-motion": "^2.9.4",
"lodash.get": "^4.4.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-modal": "^3.11.2",
"stream-browserify": "^3.0.0"
}
}