-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.66 KB
/
Copy pathpackage.json
File metadata and controls
147 lines (147 loc) · 4.66 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
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": "@multiversx/sdk-dapp-form",
"version": "5.0.2",
"description": "A library to hold the main logic for a validating a form for transactions on the MultiversX blockchain",
"author": "MultiversX",
"license": "GPL-3.0-or-later",
"repository": "multiversx/mx-sdk-dapp-form",
"main": "./out/index.cjs",
"module": "./out/index.mjs",
"types": "./out/index.d.ts",
"exports": {
".": {
"types": "./out/index.d.ts",
"import": "./out/index.mjs",
"require": "./out/index.cjs"
},
"./out": {
"types": "./out/index.d.ts",
"import": "./out/index.mjs",
"require": "./out/index.cjs"
},
"./out/*": {
"types": "./out/*.d.ts",
"import": "./out/*.mjs",
"require": "./out/*.cjs"
},
"./styles.css": "./out/styles.css",
"./package.json": "./package.json"
},
"//sideEffects": "The style modules inject their own <style> tag on import; marking the package side-effect free would let consumers tree-shake them away.",
"sideEffects": [
"**/*.scss",
"**/*.css",
"**/*.module.mjs",
"**/*.module.cjs"
],
"scripts": {
"start": "npm run watch",
"clean-out": "rimraf out",
"build:styles": "sass --no-source-map --style=compressed --silence-deprecation=import,global-builtin --load-path=src --load-path=node_modules src/assets/sass/main.scss out/styles.css",
"build": "vite build && node scripts/emit-barrel-shims.mjs && npm run build:styles",
"publish-package": "npm test && npm run build && npm publish",
"publish-package-next": "npm test && npm run build && npm publish --tag next",
"unpublish-verdaccio": "npm unpublish @multiversx/sdk-dapp-form --registry http://localhost:4873",
"publish-verdaccio": "npm run unpublish-verdaccio && npm run build && npm publish --registry http://localhost:4873/",
"publish-yalc": "npm run build && yalc publish --push",
"watch": "vite build --watch",
"test": "jest",
"lint": "eslint --fix src",
"pre-pr": "npm run lint && npm run build && npm run test",
"test:watch": "jest --watch",
"lint:check": "eslint src"
},
"devDependencies": {
"@eslint/js": "9.39.5",
"@multiversx/sdk-core": "^15.x",
"@multiversx/sdk-dapp": "^5.x",
"@multiversx/sdk-dapp-utils": "^3.x",
"@swc-node/jest": "1.10.1",
"@swc/core": "1.15.47",
"@swc/jest": "0.2.39",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "7.0.0",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.3",
"@tsconfig/recommended": "1.0.13",
"@types/jest": "30.0.0",
"@types/lodash-es": "4.17.12",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.18",
"axios": "1.18.1",
"bignumber.js": "^9.x",
"eslint": "9.39.5",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "3.10.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.2.0",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-promise": "7.3.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "16.5.0",
"identity-obj-proxy": "3.0.0",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"jest-transformer-svg": "2.1.0",
"msw": "2.15.0",
"prettier": "3.9.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-select-event": "5.5.1",
"resize-observer-polyfill": "1.5.1",
"rimraf": "6.1.3",
"sass": "1.102.0",
"tinyglobby": "0.2.17",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.66.0",
"undici": "7.29.0",
"vite": "8.2.1",
"vite-plugin-css-injected-by-js": "5.0.2",
"vite-plugin-dts": "5.0.3",
"vite-plugin-svgr": "5.2.0"
},
"files": [
"out/**/*",
"!**/*.test.*",
"!**/*.jest.*",
"!**/*.playwright.*",
"!**/*.puppeteer.*",
"!**/__mocks__/**",
"!**/__tests__/**",
"!**/*-mock.*"
],
"keywords": [
"multiversx",
"blockchain",
"dapp",
"smart-contract",
"transaction"
],
"peerDependencies": {
"@multiversx/sdk-core": "^15.x",
"@multiversx/sdk-dapp": "^5.x",
"@multiversx/sdk-dapp-utils": "^3.x",
"@multiversx/sdk-dapp-ui": ">=0.1.26 <0.2.0",
"axios": "^1.18.1",
"bignumber.js": "^9.x",
"react": ">=18",
"react-dom": ">=18"
},
"optionalDependencies": {
"@fortawesome/fontawesome-svg-core": "6.7.2",
"@fortawesome/free-solid-svg-icons": "6.7.2",
"@fortawesome/react-fontawesome": "3.5.0",
"classnames": "2.5.1",
"react-select": "5.10.2"
},
"dependencies": {
"formik": "2.4.9",
"lodash-es": "4.18.1",
"react-collapsed": "3.6.0",
"react-number-format": "5.4.5",
"react-tooltip": "5.7.2",
"yup": "1.7.1"
}
}