forked from multiversx/mx-sdk-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 4.31 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@elrondnetwork/dapp-core",
"version": "2.0.4",
"description": "A library to hold the main logic for a dapp on the Elrond Network",
"author": "ElrondNetwork",
"license": "GPL-3.0-or-later",
"repository": "ElrondNetwork/dapp-core",
"main": "./__commonjs",
"browser": "./",
"react-native": "./",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "yarn watch",
"build:types": "tsc --project tsconfig.json",
"build": "rimraf dist && node esbuild.js && yarn build:types && cp package.json dist && cp README.md dist",
"publish-package": "yarn build && cd dist && npm publish",
"publish-package-next": "yarn build && cd dist && npm publish --tag next",
"publish-yalc": "yarn build && cd dist && yalc publish",
"watch": "yarn node esbuild-watch.js && yarn build:types -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "yarn build && mv dist/* ./"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.2",
"@testing-library/react": "13.3.0",
"@types/lodash": "4.14.181",
"@types/lodash.debounce": "4.0.6",
"@types/lodash.isequal": "4.5.5",
"@types/lodash.omit": "4.5.6",
"@types/lodash.throttle": "4.1.6",
"@types/lodash.uniqby": "4.7.7",
"@types/platform": "1.3.4",
"@types/qrcode": "1.4.2",
"@types/qs": "6.9.7",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.14.0",
"better-sqlite3": "7.6.2",
"esbuild": "0.14.47",
"esbuild-node-externals": "1.4.1",
"esbuild-plugin-svgr": "1.0.1",
"esbuild-sass-plugin": "2.2.6",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react": "1.1.7",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-react": "9.2.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "4.5.0",
"glob": "8.0.3",
"husky": "8.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.3",
"jest-scss-transform": "1.0.3",
"node-stdlib-browser": "1.2.0",
"postcss": "8.4.14",
"postcss-modules": "4.3.1",
"process": "0.11.10",
"react": "18.2.0",
"rimraf": "3.0.2",
"sass": "1.32",
"ts-jest": "28.0.7",
"typescript": "4.7.3"
},
"keywords": [
"elrond",
"blockchain",
"dapp",
"smart-contract",
"transaction"
],
"peerDependencies": {
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@reduxjs/toolkit": "1.8.2",
"react-redux": "8.0.2",
"redux-persist": "6.0.0"
},
"optionalDependencies": {
"@fortawesome/fontawesome-svg-core": "6.1.0",
"@fortawesome/free-solid-svg-icons": "6.1.0",
"@fortawesome/react-fontawesome": "0.1.18",
"classnames": "2.3.1",
"moment": "2.29.1",
"platform": "1.3.6",
"qrcode": "1.5.0",
"swr": "1.1.2"
},
"size-limit": [
{
"path": "dist/dapp-core.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/dapp-core.esm.js",
"limit": "10 KB"
}
],
"files": [
"*.js",
"*.js",
"**/*.js",
"*.d.ts",
"**/*.d.ts"
],
"dependencies": {
"@elrondnetwork/erdjs": "11.0.0",
"@elrondnetwork/erdjs-extension-provider": "2.0.5",
"@elrondnetwork/erdjs-hw-provider": "2.0.4",
"@elrondnetwork/erdjs-network-providers": "0.1.6",
"@elrondnetwork/erdjs-wallet-connect-provider": "2.1.0-beta.0",
"@elrondnetwork/erdjs-web-wallet-provider": "2.1.1",
"@reduxjs/toolkit": "1.8.2",
"axios": "0.24.0",
"bignumber.js": "9.x",
"lodash.debounce": "4.0.8",
"lodash.isequal": "4.5.0",
"lodash.omit": "4.5.0",
"lodash.throttle": "4.1.1",
"lodash.uniqby": "4.7.0",
"qs": "6.10.3",
"react-idle-timer": "5.0.0",
"react-redux": "8.0.2",
"redux-persist": "6.0.0",
"reselect": "4.0.0",
"shx": "0.3.4",
"socket.io-client": "4.5.1"
}
}