forked from shrutikapoor08/react-paypal-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.97 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
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
{
"name": "@paypal/react-paypal-js",
"version": "7.0.0",
"description": "React components for the PayPal JS SDK",
"keywords": [
"react",
"component",
"paypal",
"button",
"checkout",
"payment",
"paypal javascript sdk",
"paypal smart buttons"
],
"main": "index.js",
"module": "dist/esm/react-paypal-js.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup --config",
"format": "prettier --write .",
"lint": "eslint .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"test": "jest --env=jsdom",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"release": "node ./scripts/publish",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && npm run build && npm run lint && npm test -- --coverage"
},
"files": [
"dist"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/paypal/react-paypal-js.git"
},
"homepage": "https://paypal.github.io/react-paypal-js/",
"dependencies": {
"@paypal/paypal-js": "^4.0.0",
"@paypal/sdk-constants": "^1.0.106"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/storybook-deployer": "^2.8.8",
"@testing-library/react": "^11.2.7",
"@types/react": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"lint-staged": "^11.0.0",
"pinst": "^2.1.6",
"prettier": "^2.3.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-is": "^17.0.2",
"rollup": "^2.50.6",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"shelljs": "^0.8.4",
"standard-version": "^9.3.0",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
}
}