-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.79 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.79 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
{
"name": "@paybutton/react",
"version": "5.4.0",
"description": "The easiest way to accept eCash online",
"author": "Blockchain Ventures Corp.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PayButton/paybutton.git"
},
"files": [
"dist"
],
"module": "dist/index.modern.js",
"main": "dist/index.js",
"source": "index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc --p ./tsconfig-build.json && microbundle --jsx React.createElement --format modern,cjs",
"lint": "eslint 'lib/**/*.{ts,tsx}' --fix",
"prettier": "prettier --write 'lib/**/*.ts'",
"dev": "concurrently yarn:watch yarn:storybook",
"storybook": "storybook dev -p 6006",
"watch": "microbundle watch --jsx React.createElement --no-compress --format modern,cjs",
"test": "jest",
"test:coverage": "jest --coverage"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/core": "7.18.9",
"@popperjs/core": "2.11.5",
"@storybook/addon-a11y": "^7.6.17",
"@storybook/addon-actions": "^7.6.17",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/cli": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/currency-formatter": "1.5.1",
"@types/decimal.js": "^7.4.3",
"@types/lodash": "4.14.182",
"@types/minimatch": "^6.0.0",
"@types/node": "17.0.41",
"@types/react": "18.3.26",
"@types/react-dom": "18.0.0",
"@typescript-eslint/eslint-plugin": "8.39.1",
"@typescript-eslint/parser": "8.39.1",
"@vitejs/plugin-react": "^4.6.0",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.5",
"canvas": "^3.2.0",
"concurrently": "5.3.0",
"cross-env": "7.0.3",
"currency-formatter": "1.5.9",
"eslint": "9.33.0",
"eslint-config-prettier": "6.15.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-standard": "4.1.0",
"html-webpack-plugin": "^5.5.0",
"husky": "4.3.8",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "10.5.4",
"microbundle": "^0.15.1",
"prettier": "2.7.1",
"react": "18",
"react-dom": "18",
"react-is": "16.13.1",
"react-scripts": "5.0.1",
"storybook": "^7.6.17",
"typescript": "^4.8.2",
"vite": "^6.4.2",
"yarn-run-all": "^3.1.1"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/material": "^7.3.4",
"@types/crypto-js": "^4.2.1",
"@types/jest": "^29.5.11",
"axios": "1.13.5",
"bignumber.js": "9.0.2",
"cashtab-connect": "^1.1.0",
"chronik-client": "^4.1.0",
"copy-to-clipboard": "3.3.3",
"crypto-js": "^4.2.0",
"decimal.js": "^10.6.0",
"ecashaddrjs": "^2.0.0",
"jest": "^29.7.0",
"lodash": "4.17.23",
"notistack": "3.0.0",
"qrcode.react": "3",
"react-number-format": "^5.4.4",
"socket.io-client": "4.7.4",
"ts-jest": "^29.4.5",
"xecaddrjs": "^0.0.1"
},
"lint-staged": {
"lib/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"eslint --fix",
"prettier --write"
]
},
"resolutions": {
"@types/react": "18.3.26",
"@types/react-dom": "18.3.0",
"chronik-client/ecashaddrjs": "^2.0.0",
"webpack": "^5.0.0",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"jsdom": "20.0.3"
}
}