-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.95 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
92
{
"name": "@stripe/react-connect-js",
"version": "3.3.18",
"description": "React components for Connect.js and Connect embedded components",
"main": "dist/react-connect.js",
"module": "dist/react-connect.esm.js",
"types": "dist/react-connect.d.ts",
"files": [
"dist",
"src",
"node_modules",
".yalc"
],
"scripts": {
"test": "yarn run lint && yarn run test:unit --passWithNoTests && yarn run typecheck",
"test:unit": "jest",
"lint": "eslint --max-warnings=0 '{src,examples}/**/*.{ts,tsx,js}'",
"lint:prettier": "prettier './**/*.js' './**/*.ts' './**/*.tsx' './**/*.md' --list-different",
"typecheck": "tsc",
"build": "yarn run clean && yarn run rollup -c",
"checkimport": "scripts/check-imports",
"clean": "rimraf dist",
"prettier": "prettier './**/*.js' './**/*.ts' './**/*.tsx' './**/*.md' --write",
"doctoc": "doctoc README.md",
"storybook": "start-storybook -p 6006 ",
"local-install-publish": "yalc add @stripe/[email protected] && yalc publish",
"validate-change": "yarn run test",
"validate-changes": "yarn run test"
},
"repository": {
"type": "git",
"url": "https://github.com/stripe/react-connect-js.git"
},
"keywords": [
"React",
"Connect",
"embedded UIs"
],
"author": "Stripe (https://www.stripe.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stripe/react-connect-js/issues"
},
"homepage": "https://github.com/stripe/react-connect-js#readme",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-flow": "7.18.6",
"@babel/preset-react": "7.18.6",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-replace": "^2.3.1",
"@stripe/connect-js": "3.3.16",
"@types/jest": "^24.0.25",
"@types/react": "^16.8.0",
"@types/react-dom": "^16.8.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"conditional-type-checks": "^1.0.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.8.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.6.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^22.0.0",
"prettier": "^2.8.7",
"react": "^16.14.0",
"rimraf": "^2.6.2",
"rollup": "~2.79",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^29.1.0",
"typescript": "^4.1.2",
"yalc": "^1.0.0-pre.53",
"zx": "^4.2.0"
},
"peerDependencies": {
"@stripe/connect-js": ">=3.3.16",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}