-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
108 lines (108 loc) · 3.14 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@modern-treasury/user-onboarding-react",
"version": "1.0.2",
"license": "MIT",
"author": "Modern Treasury (https://moderntreasury.com)",
"description": "React component for Modern Treasury User Onboarding Flow",
"keywords": [
"modern-treasury",
"user-onboarding",
"react",
"react-component"
],
"homepage": "https://github.com/modern-treasury/user-onboarding-react",
"repository": {
"type": "git",
"url": "git+https://github.com/modern-treasury/user-onboarding-react.git"
},
"bugs": {
"url": "https://github.com/modern-treasury/user-onboarding-react/issues"
},
"files": [
"dist",
"src",
"!src/setupTests.ts",
"!src/__snapshots__",
"!src/*.test.*",
"LICENSE"
],
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"browser:min": "dist/index.umd.min.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "yarn jest",
"test:jest": "jest",
"lint": "yarn lint:eslint",
"lint:eslint": "eslint 'src/**/*.{tsx,ts,jsx,js}'",
"lint:fix": "eslint --fix 'src/**/*.{tsx,ts,jsx,js}'",
"build": "rollup -c",
"clean": "rimraf dist/"
},
"dependencies": {
"prop-types": "^15.8.1",
"react-script-hook": "^1.7.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.18.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.3.4",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.3.0",
"@types/jest": "^29.1.1",
"@types/node": "^16.3.13",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.32.0",
"babel-jest": "^29.1.2",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-plugin-typescript-to-proptypes": "^2.0.0",
"babel-preset-airbnb": "^5.0.0",
"browserslist": "^4.21.3",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jest-resolve": "^29.1.2",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}