-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.74 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.74 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
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
{
"name": "@multiversx/sdk-dapp",
"version": "5.7.1",
"description": "A library to hold the main logic for a dapp on the MultiversX blockchain",
"author": "MultiversX",
"license": "MIT",
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"out/**/*",
"!**/*.test.*",
"!**/*.jest.*",
"!**/*.playwright.*",
"!**/*.puppeteer.*",
"!**/__mocks__/**",
"!**/__tests__/**",
"!**/*-mock.*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/multiversx/mx-sdk-dapp.git"
},
"scripts": {
"unpublish-verdaccio": "npm unpublish @multiversx/sdk-dapp --force --registry http://localhost:4873",
"publish-verdaccio": "npm run unpublish-verdaccio && npm run build && npm publish --registry http://localhost:4873/",
"compile": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"clean-out": "node -e \"require('fs').rmSync('out',{recursive:true,force:true})\"",
"build-esbuild": "npm run clean-out && node esbuild.js",
"build": "npm run build-esbuild && npm run compile",
"test": "jest",
"test:coverage": "jest --coverage && node scripts/extract-coverage.js",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@lifeomic/axios-fetch": "3.1.0",
"@multiversx/sdk-extension-provider": "5.1.2",
"@multiversx/sdk-hw-provider": "8.2.0",
"@multiversx/sdk-native-auth-client": "2.0.1",
"@multiversx/sdk-wallet-connect-provider": "6.1.5",
"@multiversx/sdk-web-wallet-cross-window-provider": "3.2.2",
"@multiversx/sdk-web-wallet-iframe-provider": "4.0.1",
"@multiversx/sdk-webview-provider": "3.2.7",
"immer": "10.1.1",
"linkifyjs": "4.3.3",
"lodash.isempty": "4.4.0",
"lodash.isequal": "4.5.0",
"lodash.isstring": "4.0.1",
"lodash.startcase": "4.4.0",
"lodash.trimend": "4.18.0",
"lodash.uniq": "4.5.0",
"socket.io-client": "4.8.3",
"zustand": "4.4.7"
},
"peerDependencies": {
"@multiversx/sdk-core": "^14.x || ^15.x",
"@multiversx/sdk-dapp-utils": "^3.x",
"axios": ">=1.15.0",
"bignumber.js": "^9.x",
"protobufjs": "^7.5.5"
},
"optionalDependencies": {
"@multiversx/sdk-dapp-ui": ">=0.1.24 <0.2.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@multiversx/sdk-core": "^15.x",
"@multiversx/sdk-dapp-utils": "^3.x",
"@swc/core": "1.15.43",
"@swc/jest": "0.2.39",
"@types/jest": "29.5.13",
"@types/lodash.isempty": "4.4.9",
"@types/lodash.isequal": "4.5.8",
"@types/lodash.isstring": "4.0.9",
"@types/lodash.startcase": "4.4.9",
"@types/lodash.trimend": "4.5.9",
"@types/lodash.uniq": "4.5.9",
"@types/node": "20.12.8",
"@types/react": "18.2.0",
"@typescript-eslint/eslint-plugin": "8.62.0",
"@typescript-eslint/parser": "8.62.0",
"axios": "^1.18.1",
"axios-mock-adapter": "1.22.0",
"bignumber.js": "^9.x",
"esbuild": "0.25.12",
"esbuild-node-externals": "1.23.1",
"esbuild-plugin-replace": "1.4.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-promise": "7.3.0",
"glob": "11.1.0",
"globals": "16.3.0",
"isomorphic-fetch": "3.0.0",
"jest": "30.1.3",
"jest-environment-jsdom": "29.7.0",
"msw": "1.3.1",
"node-stdlib-browser": "1.3.1",
"prettier": "3.2.5",
"protobufjs": "^7.5.5",
"react": "18.2.0",
"ts-jest": "29.4.11",
"tsc-alias": "1.8.17",
"typescript": "5.9.3",
"typescript-eslint": "8.62.0"
}
}