-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "@gr4vy/embed-react",
"version": "2.37.0",
"description": "Embed a credit card form in your React app and store the card details, authorize the card, and capture a transaction.",
"main": "lib/index",
"types": "lib/index",
"author": "Gr4vy <code@gr4vy.com>",
"license": "MIT",
"repository": "https://github.com/gr4vy/gr4vy-embed",
"homepage": "https://gr4vy.com",
"scripts": {
"clean": "rm -rf lib *.tgz",
"dev": "webpack serve --config webpack.dev.js",
"prebuild": "yarn clean",
"build": "tsc",
"lint": "eslint src/**/*.{ts,tsx} dev/**/*.tsx",
"prepack": "yarn build",
"storybook": "storybook dev",
"test": "jest --colors"
},
"files": [
"lib",
"LICENSE",
"README",
"CHANGELOG.md"
],
"peerDependencies": {
"react": ">=18.3.1",
"react-dom": ">=18.3.1"
},
"dependencies": {
"@babel/runtime": "^7.27.6",
"@gr4vy/embed": "^2.37.0",
"lodash.isequal": "^4.5.0"
},
"devDependencies": {
"@storybook/addon-webpack5-compiler-babel": "^4.0.0",
"@storybook/cli": "10.2.9",
"@storybook/react-webpack5": "10.2.9",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"eslint-plugin-storybook": "10.2.9",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "10.2.9"
},
"gitHead": "6606f868e978fc1aa7368557d2730d52170a9049",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org",
"provenance": true
}
}