-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "teller-connect-react",
"version": "0.2.0",
"description": "React bindings for Teller Connect",
"main": "dist/teller-connect-react.cjs.js",
"types": "dist/@types/index.d.ts",
"scripts": {
"build": "webpack --mode production",
"postbuild": "tsc -p tsconfig.types.json",
"test": "NODE_ENV=test BABEL_ENV=testing jest"
},
"keywords": [
"connect",
"react",
"teller",
"typescript"
],
"author": "Teller",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@testing-library/react": "^12.1.5",
"@types/jest": "^29.5.5",
"@types/react": "^18.2.28",
"babel-loader": "^9.1.3",
"babel-plugin-typescript-to-proptypes": "^2.1.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"terser-webpack-plugin": "^5.3.9",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"browser": "dist/teller-connect-react.umd.js",
"browser:min": "dist/teller-connect-react.umd.min.js",
"dependencies": {
"react-script-hook": "^1.7.2"
},
"peerDependencies": {
"react": "^16.8.6 || 17 - 18",
"react-dom": "^16.8.6 || 17 - 18"
}
}