-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.84 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
{
"name": "react-use-wyre",
"version": "0.3.0-alpha.2",
"description": "🤑 React.js hooks for making payments using SendWyre. https://docs.sendwyre.com/",
"main": "dist",
"repository": "https://github.com/cawfree/react-use-wyre",
"author": "Alex Thomas (@cawfree) <hello@cawfree.com>",
"license": "MIT",
"types": "dist/index.d.ts",
"private": false,
"keywords": [
"wyre",
"sendwyre",
"react",
"react-native",
"payment",
"crypto",
"debit",
"card"
],
"scripts": {
"build": "rm -rf dist ; yarn ; yarn tsc ; rm -rf node_modules",
"prettify": "yarn prettier --write '**/*.tsx|**/*.ts'",
"lint": "eslint --fix --ext .ts,.tsx ./src",
"test": "jest"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jsrsasign": "^8.0.9",
"@types/react": "^16.9.56",
"@types/type-check": "^0.3.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^26.2.2",
"leasot": "^11.1.0",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"tsc": "^1.20150623.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@types/deepmerge": "^2.2.0",
"axios": "^0.19.2",
"deepmerge": "^4.2.2",
"jsrsasign": "^8.0.21"
}
}