@kmeltzer127/react-pelcro-js 1.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +135 -0
- package/dist/index.cjs.js +38029 -0
- package/dist/index.esm.js +37743 -0
- package/dist/pelcro.css +3399 -0
- package/package.json +147 -0
package/package.json
ADDED
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@kmeltzer127/react-pelcro-js",
|
|
3
|
+
"description": "Pelcro's React UI Elements",
|
|
4
|
+
"version": "1.0.0-beta.2",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"private": false,
|
|
7
|
+
"main": "dist/index.cjs.js",
|
|
8
|
+
"module": "dist/index.esm.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"preinstall": "git config core.hooksPath ./qa/hooks || echo 'GIT hooks directory not found'",
|
|
14
|
+
"start": "webpack serve",
|
|
15
|
+
"generateFiles": "cross-env NODE_ENV=production rollup -c",
|
|
16
|
+
"lint": "eslint ./src/**/*.js --fix",
|
|
17
|
+
"commit": "cz",
|
|
18
|
+
"test": "node ./__tests__/sdkDownloader&&jest --watchAll",
|
|
19
|
+
"test:once": "node ./__tests__/sdkDownloader&&jest",
|
|
20
|
+
"semantic-release": "semantic-release"
|
|
21
|
+
},
|
|
22
|
+
"browserslist": [
|
|
23
|
+
"last 8 ChromeAndroid versions",
|
|
24
|
+
"last 8 Chrome versions",
|
|
25
|
+
"last 2 Android versions",
|
|
26
|
+
"last 2 iOS versions",
|
|
27
|
+
"last 1 Samsung version",
|
|
28
|
+
"last 1 Firefox version",
|
|
29
|
+
"last 1 Edge version",
|
|
30
|
+
"last 1 Safari version"
|
|
31
|
+
],
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@babel/cli": "^7.8.4",
|
|
34
|
+
"@babel/core": "^7.9.0",
|
|
35
|
+
"@babel/eslint-parser": "^7.12.13",
|
|
36
|
+
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
37
|
+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
|
|
38
|
+
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
|
|
39
|
+
"@babel/plugin-syntax-class-properties": "^7.10.4",
|
|
40
|
+
"@babel/polyfill": "^7.2.5",
|
|
41
|
+
"@babel/preset-env": "^7.14.1",
|
|
42
|
+
"@babel/preset-react": "^7.13.13",
|
|
43
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
|
|
44
|
+
"@rollup/plugin-commonjs": "^25.0.8",
|
|
45
|
+
"@rollup/plugin-json": "^4.0.3",
|
|
46
|
+
"@rollup/plugin-node-resolve": "^15.3.1",
|
|
47
|
+
"@rollup/plugin-url": "^6.0.0",
|
|
48
|
+
"@semantic-release/changelog": "^5.0.1",
|
|
49
|
+
"@semantic-release/git": "^9.0.0",
|
|
50
|
+
"@svgr/rollup": "^5.5.0",
|
|
51
|
+
"@svgr/webpack": "^5.5.0",
|
|
52
|
+
"@testing-library/react": "^16.1.0",
|
|
53
|
+
"@webpack-cli/serve": "^1.3.0",
|
|
54
|
+
"autoprefixer": "^10.2.4",
|
|
55
|
+
"babel-core": "^7.0.0-bridge.0",
|
|
56
|
+
"babel-jest": "^26.6.3",
|
|
57
|
+
"babel-loader": "^8.1.0",
|
|
58
|
+
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
59
|
+
"babel-preset-react-app": "^10.0.0",
|
|
60
|
+
"browserslist": "^4.16.3",
|
|
61
|
+
"cross-env": "^7.0.3",
|
|
62
|
+
"css-loader": "^3.2.0",
|
|
63
|
+
"cz-conventional-changelog": "3.3.0",
|
|
64
|
+
"eslint": "^7.19.0",
|
|
65
|
+
"eslint-config-google": "^0.14.0",
|
|
66
|
+
"eslint-config-prettier": "^6.11.0",
|
|
67
|
+
"eslint-plugin-import": "^2.22.1",
|
|
68
|
+
"eslint-plugin-jsdoc": "^25.4.2",
|
|
69
|
+
"eslint-plugin-prettier": "^3.1.3",
|
|
70
|
+
"eslint-plugin-react": "^7.18.0",
|
|
71
|
+
"eslint-plugin-react-hooks": "^4.2.0",
|
|
72
|
+
"file-loader": "^6.2.0",
|
|
73
|
+
"fs": "^0.0.1-security",
|
|
74
|
+
"html-webpack-plugin": "^3.2.0",
|
|
75
|
+
"image-webpack-loader": "^7.0.1",
|
|
76
|
+
"jest": "^26.6.3",
|
|
77
|
+
"postcss": "^8.2.4",
|
|
78
|
+
"postcss-import": "^14.0.0",
|
|
79
|
+
"postcss-loader": "4.2.0",
|
|
80
|
+
"prettier": "2.3.1",
|
|
81
|
+
"react": "^19.0.0",
|
|
82
|
+
"react-dom": "^19.0.0",
|
|
83
|
+
"react-ga": "^2.7.0",
|
|
84
|
+
"react-refresh": "^0.14.0",
|
|
85
|
+
"request": "^2.88.2",
|
|
86
|
+
"rollup": "^2.80.0",
|
|
87
|
+
"rollup-plugin-babel": "^4.4.0",
|
|
88
|
+
"rollup-plugin-delete": "^1.2.0",
|
|
89
|
+
"rollup-plugin-node-resolve": "^5.2.0",
|
|
90
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
91
|
+
"rollup-plugin-postcss": "^4.0.0",
|
|
92
|
+
"rollup-plugin-visualizer": "^4.2.0",
|
|
93
|
+
"semantic-release": "^17.4.4",
|
|
94
|
+
"simple-zustand-devtools": "^1.0.0",
|
|
95
|
+
"style-loader": "^2.0.0",
|
|
96
|
+
"tailwindcss": "^2.0.2",
|
|
97
|
+
"travis-ci-cloudfront-invalidation": "^1.1.0",
|
|
98
|
+
"webpack": "^4.44.1",
|
|
99
|
+
"webpack-cli": "^4.3.0",
|
|
100
|
+
"webpack-dev-server": "^3.11.2"
|
|
101
|
+
},
|
|
102
|
+
"dependencies": {
|
|
103
|
+
"@headlessui/react": "^2.2.0",
|
|
104
|
+
"@stripe/react-stripe-js": "^2.8.1",
|
|
105
|
+
"@stripe/stripe-js": "^3.5.0",
|
|
106
|
+
"i18next": "^23.16.0",
|
|
107
|
+
"react-easy-crop": "^4.7.5",
|
|
108
|
+
"react-ga4": "^2.1.0",
|
|
109
|
+
"react-hot-toast": "^2.5.0",
|
|
110
|
+
"react-i18next": "^15.1.0",
|
|
111
|
+
"react-qr-code": "^2.0.7",
|
|
112
|
+
"use-reducer-with-side-effects": "^2.2.0",
|
|
113
|
+
"zustand": "^5.0.0"
|
|
114
|
+
},
|
|
115
|
+
"peerDependencies": {
|
|
116
|
+
"react": "^19.0.0",
|
|
117
|
+
"react-dom": "^19.0.0"
|
|
118
|
+
},
|
|
119
|
+
"optionalDependencies": {
|
|
120
|
+
"fsevents": "2.1.2"
|
|
121
|
+
},
|
|
122
|
+
"babel": {
|
|
123
|
+
"presets": [
|
|
124
|
+
"@babel/preset-env",
|
|
125
|
+
[
|
|
126
|
+
"@babel/preset-react",
|
|
127
|
+
{
|
|
128
|
+
"runtime": "automatic"
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
],
|
|
132
|
+
"plugins": [
|
|
133
|
+
"@babel/plugin-proposal-class-properties",
|
|
134
|
+
"@babel/plugin-proposal-optional-chaining",
|
|
135
|
+
"@babel/plugin-proposal-nullish-coalescing-operator"
|
|
136
|
+
]
|
|
137
|
+
},
|
|
138
|
+
"repository": {
|
|
139
|
+
"type": "git",
|
|
140
|
+
"url": "https://github.com/lanestp/react-pelcro-js.git"
|
|
141
|
+
},
|
|
142
|
+
"config": {
|
|
143
|
+
"commitizen": {
|
|
144
|
+
"path": "cz-conventional-changelog"
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|