-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.76 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": "@boldcommerce/checkout-react-components",
"version": "4.3.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"author": {
"name": "Bold Commerce",
"url": "https://boldcommerce.com"
},
"repository": "https://github.com/bold-commerce/checkout-react-components",
"description": "A React component library for creating checkout experiences utilizing Bold API's.",
"license": "MIT",
"scripts": {
"start": "watch 'yarn build' ./src",
"build": "node ./scripts/build.js",
"test": "jest"
},
"peerDependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.13.1 || ^17.0.0",
"react-dom": "^16.13.1 || ^17.0.0"
},
"dependencies": {
"classnames": "^2.2.6",
"jest-config": "^27.0.6",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/react": "^12.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"jest": "^27.0.6",
"jest-fetch-mock": "^3.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.49.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"watch": "^1.0.2"
},
"browserslist": [
"last 3 chrome versions",
"last 3 chromeandroid versions",
"last 3 firefox versions",
"last 3 opera versions",
"last 2 edge versions",
"safari >= 10",
"ios >= 10"
]
}