@selfcommunity/react-ui 0.7.50-events.71 → 0.7.50-events.77
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/lib/cjs/assets/onBoarding/Android.d.ts +1 -0
- package/lib/cjs/assets/onBoarding/Android.js +7 -0
- package/lib/cjs/assets/onBoarding/CategoryA.d.ts +1 -0
- package/lib/cjs/assets/onBoarding/CategoryA.js +7 -0
- package/lib/cjs/assets/onBoarding/CategoryB.d.ts +1 -0
- package/lib/cjs/assets/onBoarding/CategoryB.js +7 -0
- package/lib/cjs/assets/onBoarding/Header.d.ts +1 -0
- package/lib/cjs/assets/onBoarding/Header.js +7 -0
- package/lib/cjs/assets/onBoarding/Ios.d.ts +1 -0
- package/lib/cjs/assets/onBoarding/Ios.js +7 -0
- package/lib/cjs/components/EventInviteButton/EventInviteButton.d.ts +1 -1
- package/lib/cjs/components/EventInviteButton/EventInviteButton.js +17 -28
- package/lib/cjs/components/EventMembersWidget/EventMembersWidget.js +11 -4
- package/lib/cjs/components/EventMembersWidget/TabContentComponent.d.ts +1 -0
- package/lib/cjs/components/EventMembersWidget/TabContentComponent.js +15 -2
- package/lib/cjs/components/Feed/Feed.d.ts +1 -0
- package/lib/cjs/components/Feed/Feed.js +3 -0
- package/lib/cjs/components/OnBoardingWidget/OnBoardingWidget.d.ts +19 -0
- package/lib/cjs/components/OnBoardingWidget/OnBoardingWidget.js +209 -0
- package/lib/cjs/components/OnBoardingWidget/Skeleton.d.ts +1 -0
- package/lib/cjs/components/OnBoardingWidget/Skeleton.js +24 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/App/App.d.ts +18 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/App/App.js +74 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/App/index.d.ts +3 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/App/index.js +5 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/Appearance.d.ts +13 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/Appearance.js +226 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/index.d.ts +3 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/index.js +5 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/reducer.d.ts +15 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Appearance/reducer.js +42 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Category/Category.d.ts +18 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Category/Category.js +81 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Category/index.d.ts +3 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Category/index.js +5 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Content/Content.d.ts +18 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Content/Content.js +51 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Content/index.d.ts +3 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Content/index.js +5 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Invite/Invite.d.ts +13 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Invite/Invite.js +54 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Invite/index.d.ts +3 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Invite/index.js +5 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Profile/Profile.d.ts +25 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Profile/Profile.js +94 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Profile/index.d.ts +3 -0
- package/lib/cjs/components/OnBoardingWidget/Steps/Profile/index.js +5 -0
- package/lib/cjs/components/OnBoardingWidget/constants.d.ts +1 -0
- package/lib/cjs/components/OnBoardingWidget/constants.js +4 -0
- package/lib/cjs/components/OnBoardingWidget/index.d.ts +4 -0
- package/lib/cjs/components/OnBoardingWidget/index.js +8 -0
- package/lib/cjs/components/PlatformWidget/constants.d.ts +4 -0
- package/lib/cjs/components/PlatformWidget/constants.js +5 -1
- package/lib/cjs/index.d.ts +3 -1
- package/lib/cjs/index.js +8 -3
- package/lib/cjs/shared/ProgressBar/index.d.ts +23 -0
- package/lib/cjs/shared/ProgressBar/index.js +25 -0
- package/lib/cjs/utils/onBoarding.d.ts +2 -0
- package/lib/cjs/utils/onBoarding.js +20 -0
- package/lib/esm/assets/onBoarding/Android.d.ts +1 -0
- package/lib/esm/assets/onBoarding/Android.js +4 -0
- package/lib/esm/assets/onBoarding/CategoryA.d.ts +1 -0
- package/lib/esm/assets/onBoarding/CategoryA.js +4 -0
- package/lib/esm/assets/onBoarding/CategoryB.d.ts +1 -0
- package/lib/esm/assets/onBoarding/CategoryB.js +4 -0
- package/lib/esm/assets/onBoarding/Header.d.ts +1 -0
- package/lib/esm/assets/onBoarding/Header.js +4 -0
- package/lib/esm/assets/onBoarding/Ios.d.ts +1 -0
- package/lib/esm/assets/onBoarding/Ios.js +4 -0
- package/lib/esm/components/EventInviteButton/EventInviteButton.d.ts +1 -1
- package/lib/esm/components/EventInviteButton/EventInviteButton.js +17 -28
- package/lib/esm/components/EventMembersWidget/EventMembersWidget.js +11 -4
- package/lib/esm/components/EventMembersWidget/TabContentComponent.d.ts +1 -0
- package/lib/esm/components/EventMembersWidget/TabContentComponent.js +15 -2
- package/lib/esm/components/Feed/Feed.d.ts +1 -0
- package/lib/esm/components/Feed/Feed.js +3 -0
- package/lib/esm/components/OnBoardingWidget/OnBoardingWidget.d.ts +19 -0
- package/lib/esm/components/OnBoardingWidget/OnBoardingWidget.js +207 -0
- package/lib/esm/components/OnBoardingWidget/Skeleton.d.ts +1 -0
- package/lib/esm/components/OnBoardingWidget/Skeleton.js +20 -0
- package/lib/esm/components/OnBoardingWidget/Steps/App/App.d.ts +18 -0
- package/lib/esm/components/OnBoardingWidget/Steps/App/App.js +70 -0
- package/lib/esm/components/OnBoardingWidget/Steps/App/index.d.ts +3 -0
- package/lib/esm/components/OnBoardingWidget/Steps/App/index.js +2 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Appearance/Appearance.d.ts +13 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Appearance/Appearance.js +223 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Appearance/index.d.ts +3 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Appearance/index.js +2 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Appearance/reducer.d.ts +15 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Appearance/reducer.js +37 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Category/Category.d.ts +18 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Category/Category.js +77 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Category/index.d.ts +3 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Category/index.js +2 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Content/Content.d.ts +18 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Content/Content.js +47 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Content/index.d.ts +3 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Content/index.js +2 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Invite/Invite.d.ts +13 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Invite/Invite.js +50 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Invite/index.d.ts +3 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Invite/index.js +2 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Profile/Profile.d.ts +25 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Profile/Profile.js +91 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Profile/index.d.ts +3 -0
- package/lib/esm/components/OnBoardingWidget/Steps/Profile/index.js +2 -0
- package/lib/esm/components/OnBoardingWidget/constants.d.ts +1 -0
- package/lib/esm/components/OnBoardingWidget/constants.js +1 -0
- package/lib/esm/components/OnBoardingWidget/index.d.ts +4 -0
- package/lib/esm/components/OnBoardingWidget/index.js +4 -0
- package/lib/esm/components/PlatformWidget/constants.d.ts +4 -0
- package/lib/esm/components/PlatformWidget/constants.js +4 -0
- package/lib/esm/index.d.ts +3 -1
- package/lib/esm/index.js +5 -3
- package/lib/esm/shared/ProgressBar/index.d.ts +23 -0
- package/lib/esm/shared/ProgressBar/index.js +22 -0
- package/lib/esm/utils/onBoarding.d.ts +2 -0
- package/lib/esm/utils/onBoarding.js +15 -0
- package/lib/umd/920.js +2 -0
- package/lib/umd/react-ui.js +1 -1
- package/package.json +181 -180
- package/lib/umd/224.js +0 -2
- /package/lib/umd/{224.js.LICENSE.txt → 920.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,182 +1,183 @@
|
|
|
1
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
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
2
|
+
"name": "@selfcommunity/react-ui",
|
|
3
|
+
"version": "0.7.50-events.77+32fb91861",
|
|
4
|
+
"description": "React UI Components to integrate a Community created with SelfCommunity Platform.",
|
|
5
|
+
"author": "SelfCommunity <https://www.selfcommunity.com>",
|
|
6
|
+
"homepage": "https://www.selfcommunity.com",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"main": "./lib/cjs/index.js",
|
|
9
|
+
"module": "./lib/esm/index.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"require": "./lib/cjs/index.js",
|
|
13
|
+
"import": "./lib/esm/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./*": {
|
|
16
|
+
"require": "./lib/cjs/*",
|
|
17
|
+
"import": "./lib/esm/*"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"keywords": [
|
|
22
|
+
"react",
|
|
23
|
+
"widgets",
|
|
24
|
+
"community",
|
|
25
|
+
"community ui",
|
|
26
|
+
"selfcommunity ui",
|
|
27
|
+
"react-ui",
|
|
28
|
+
"react-component"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"prepare": "install-peers -f",
|
|
32
|
+
"install-peers": "install-peers -f",
|
|
33
|
+
"test": "npm run lint && npm run test-only",
|
|
34
|
+
"test-only": "jest --runInBand",
|
|
35
|
+
"tdd": "jest --watch --runInBand",
|
|
36
|
+
"lint": "eslint ./src test --ext .ts,.tsx,.js",
|
|
37
|
+
"prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
|
|
38
|
+
"prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
|
|
39
|
+
"clean:lib": "rimraf lib",
|
|
40
|
+
"clean:node_modules": "rimraf node_modules",
|
|
41
|
+
"build:commonjs": "tsc -b tsconfig-cjs.build.json",
|
|
42
|
+
"build:esm": "tsc -b tsconfig-esm.build.json",
|
|
43
|
+
"build:umd": "webpack --mode production",
|
|
44
|
+
"build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
|
|
45
|
+
"build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
|
|
46
|
+
"prerelease": "yarn run clean:lib && yarn run build"
|
|
47
|
+
},
|
|
48
|
+
"directories": {
|
|
49
|
+
"lib": "lib"
|
|
50
|
+
},
|
|
51
|
+
"files": [
|
|
52
|
+
"lib"
|
|
53
|
+
],
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-ui"
|
|
57
|
+
},
|
|
58
|
+
"publishConfig": {
|
|
59
|
+
"access": "public"
|
|
60
|
+
},
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"@emotion/react": "^11.11.3",
|
|
63
|
+
"@emotion/styled": "^11.11.0",
|
|
64
|
+
"@mui/lab": "~5.0.0-alpha.159",
|
|
65
|
+
"@mui/material": "^5.15.3",
|
|
66
|
+
"@mui/x-date-pickers": "^6.18.7",
|
|
67
|
+
"@rpldy/chunked-sender": "^1.7.1",
|
|
68
|
+
"@rpldy/chunked-uploady": "^1.7.1",
|
|
69
|
+
"@rpldy/upload-button": "^1.7.1",
|
|
70
|
+
"@rpldy/upload-drop-zone": "^1.7.1",
|
|
71
|
+
"@rpldy/upload-preview": "^1.7.1",
|
|
72
|
+
"@rpldy/uploady": "^1.7.1",
|
|
73
|
+
"notistack": "^3.0.1",
|
|
74
|
+
"pdfjs-dist": "3.11.174",
|
|
75
|
+
"react": "^17.0.2 || 18",
|
|
76
|
+
"react-dom": "17 || 18",
|
|
77
|
+
"react-intl": "^6.4.7"
|
|
78
|
+
},
|
|
79
|
+
"dependencies": {
|
|
80
|
+
"@emotion/react": "^11.11.3",
|
|
81
|
+
"@emotion/styled": "^11.11.0",
|
|
82
|
+
"@lexical/html": "^0.15.0",
|
|
83
|
+
"@lexical/react": "^0.15.0",
|
|
84
|
+
"@mui/lab": "~5.0.0-alpha.159",
|
|
85
|
+
"@mui/material": "^5.15.3",
|
|
86
|
+
"@mui/x-date-pickers": "^6.18.7",
|
|
87
|
+
"@react-google-maps/api": "^2.19.3",
|
|
88
|
+
"@rpldy/chunked-sender": "^1.7.1",
|
|
89
|
+
"@rpldy/chunked-uploady": "^1.7.1",
|
|
90
|
+
"@rpldy/upload-button": "^1.7.1",
|
|
91
|
+
"@rpldy/upload-drop-zone": "^1.7.1",
|
|
92
|
+
"@rpldy/upload-preview": "^1.7.1",
|
|
93
|
+
"@rpldy/uploady": "^1.7.1",
|
|
94
|
+
"@selfcommunity/api-services": "0.4.50-events.77+32fb91861",
|
|
95
|
+
"@selfcommunity/react-core": "0.4.50-events.77+32fb91861",
|
|
96
|
+
"@selfcommunity/react-i18n": "0.5.50-events.77+32fb91861",
|
|
97
|
+
"@selfcommunity/types": "0.5.50-events.77+32fb91861",
|
|
98
|
+
"@selfcommunity/utils": "0.2.50-events.77+32fb91861",
|
|
99
|
+
"@types/classnames": "^2.3.1",
|
|
100
|
+
"@types/sortablejs": "1",
|
|
101
|
+
"autosuggest-highlight": "^3.3.4",
|
|
102
|
+
"classnames": "^2.3.2",
|
|
103
|
+
"date-fns": "^2.30.0",
|
|
104
|
+
"emoji-picker-react": "4.5.16",
|
|
105
|
+
"lexical": "0.15.0",
|
|
106
|
+
"libphonenumber-js": "^1.10.53",
|
|
107
|
+
"mui-color-input": "^3.0.0",
|
|
108
|
+
"notistack": "^3.0.1",
|
|
109
|
+
"pdfjs-dist": "3.11.174",
|
|
110
|
+
"prop-types": "^15.8.1",
|
|
111
|
+
"prop-types-extra": "^1.1.1",
|
|
112
|
+
"pubsub-js": "^1.9.4",
|
|
113
|
+
"react": "^17.0.2 || 18",
|
|
114
|
+
"react-custom-scrollbars-2": "^4.5.0",
|
|
115
|
+
"react-dom": "17 || 18",
|
|
116
|
+
"react-intersection-observer": "^9.4.3",
|
|
117
|
+
"react-intl": "^6.4.7",
|
|
118
|
+
"react-lazyload": "^3.2.0",
|
|
119
|
+
"react-photo-view": "^1.2.3",
|
|
120
|
+
"react-player": "^2.12.0",
|
|
121
|
+
"react-share": "^4.4.1",
|
|
122
|
+
"react-sortablejs": "^6.1.4",
|
|
123
|
+
"react-waypoint": "^10.3.0",
|
|
124
|
+
"resize-observer-polyfill": "^1.5.1",
|
|
125
|
+
"seamless-scroll-polyfill": "^2.3.4",
|
|
126
|
+
"sortablejs": "^1.15.0",
|
|
127
|
+
"spark-md5": "~3.0.2",
|
|
128
|
+
"swiper": "^11.1.9",
|
|
129
|
+
"throttle-debounce": "^2.1.0",
|
|
130
|
+
"use-deep-compare-effect": "^1.8.1",
|
|
131
|
+
"use-resize-observer": "^9.1.0",
|
|
132
|
+
"virtual-scroller": "^1.12.3",
|
|
133
|
+
"yjs": "^13.6.7"
|
|
134
|
+
},
|
|
135
|
+
"devDependencies": {
|
|
136
|
+
"@types/chai": "^4.2.14",
|
|
137
|
+
"@types/enzyme": "^3.10.8",
|
|
138
|
+
"@types/jest": "^26.0.20",
|
|
139
|
+
"@types/react": "17 || 18",
|
|
140
|
+
"@types/react-dom": "17 || 18",
|
|
141
|
+
"@types/sinon": "^9.0.10",
|
|
142
|
+
"@typescript-eslint/eslint-plugin": "^4.14.2",
|
|
143
|
+
"@typescript-eslint/parser": "^4.14.2",
|
|
144
|
+
"babel-jest": "^26.6.3",
|
|
145
|
+
"chai": "^4.2.0",
|
|
146
|
+
"cherry-pick": "^0.5.0",
|
|
147
|
+
"enzyme": "^3.10.0",
|
|
148
|
+
"enzyme-adapter-react-16": "^1.15.6",
|
|
149
|
+
"eslint": "^7.19.0",
|
|
150
|
+
"eslint-config-prettier": "^7.2.0",
|
|
151
|
+
"eslint-plugin-import": "^2.22.1",
|
|
152
|
+
"eslint-plugin-mocha": "^8.0.0",
|
|
153
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
154
|
+
"eslint-plugin-react": "^7.22.0",
|
|
155
|
+
"eslint-plugin-react-hooks": "^4.2.0",
|
|
156
|
+
"faker": "^5.3.1",
|
|
157
|
+
"install-peers-cli": "^2.2.0",
|
|
158
|
+
"jest": "^26.6.3",
|
|
159
|
+
"postcss": "^8.2.4",
|
|
160
|
+
"prettier": "^2.2.1",
|
|
161
|
+
"rimraf": "^3.0.2",
|
|
162
|
+
"sass": "^1.32.6",
|
|
163
|
+
"sinon": "^9.2.4",
|
|
164
|
+
"transpile-webpack-plugin": "^1.1.3",
|
|
165
|
+
"tslib": "^2.6.2",
|
|
166
|
+
"typescript": "^4.1.3",
|
|
167
|
+
"webpack": "^5.20.1",
|
|
168
|
+
"webpack-atoms": "^17.1.0",
|
|
169
|
+
"webpack-bundle-analyzer": "^4.9.0",
|
|
170
|
+
"webpack-cli": "^4.5.0"
|
|
171
|
+
},
|
|
172
|
+
"prettier": {
|
|
173
|
+
"printWidth": 150,
|
|
174
|
+
"bracketSpacing": false,
|
|
175
|
+
"trailingComma": "none",
|
|
176
|
+
"singleQuote": true,
|
|
177
|
+
"bracketSameLine": true
|
|
178
|
+
},
|
|
179
|
+
"bugs": {
|
|
180
|
+
"url": "https://github.com/selfcommunity/community-js/issues"
|
|
181
|
+
},
|
|
182
|
+
"gitHead": "32fb91861b9e631c8b42cfec2ee16b155e9af93a"
|
|
182
183
|
}
|