-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "@devgfnl/payment-method-pagbank-pwa-studio",
"version": "1.0.0",
"description": "A PWA Studio extension to integrate PagBank payment methods, supporting Brazilian options like Pix, Boleto, and credit cards in Venia UI.",
"author": "Gabriel Lima <[email protected]>",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"pwa-studio": {
"targets": {
"intercept": "lib/targets/intercept.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/GabrielFNLima/payment-method-pagbank-pwa-studio.git"
},
"bugs": {
"url": "https://github.com/GabrielFNLima/payment-method-pagbank-pwa-studio/issues"
},
"homepage": "https://github.com/GabrielFNLima/payment-method-pagbank-pwa-studio#readme",
"scripts": {
"format": "prettier --ignore-path .gitignore \"lib/**/*.+(ts|js|tsx)\" --write",
"lint": "eslint --ignore-path .gitignore 'lib/**/{*.js,*.ts,*.tsx,package.json}'",
"test": "jest",
"test:dev": "jest --watch",
"prepare": "install-peers"
},
"lint-staged": {
"./lib/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"peerDependencies": {
"@magento/venia-ui": "^10.3.0",
"react": "^18.2.0"
},
"devDependencies": {
"@magento/eslint-config": "^1.5.3",
"@testing-library/react": "^14.1.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-package-json": "^0.2.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"install-peers-cli": "^2.2.0",
"jest": "^29.7.0",
"jest-transform-graphql": "^2.1.0",
"prettier": "^3.1.1",
"prettier-check": "^2.0.0",
"react-test-renderer": "^18.2.0"
},
"dependencies": {
"react-copy-to-clipboard": "^5.1.0"
}
}