@selfcommunity/react-templates 0.4.8-alpha.2 → 0.4.8-alpha.21

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.
@@ -1 +1,3 @@
1
1
  /*! (c) 2023 - present: Quentral Srl | https://github.com/selfcommunity/community-js/blob/master/LICENSE.md */
2
+
3
+ /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
package/package.json CHANGED
@@ -1,125 +1,130 @@
1
1
  {
2
- "name": "@selfcommunity/react-templates",
3
- "version": "0.4.8-alpha.2",
4
- "license": "MIT",
5
- "private": false,
6
- "main": "./lib/cjs/index.js",
7
- "module": "./lib/esm/index.js",
8
- "exports": {
9
- ".": {
10
- "require": "./lib/cjs/index.js",
11
- "import": "./lib/esm/index.js"
12
- },
13
- "./*": {
14
- "require": "./lib/cjs/*",
15
- "import": "./lib/esm/*"
16
- }
17
- },
18
- "sideEffects": false,
19
- "description": "React Templates Components to integrate a Community created with SelfCommunity.",
20
- "author": "SelfCommunity <https://www.selfcommunity.com>",
21
- "keywords": [
22
- "react",
23
- "widgets",
24
- "community",
25
- "selfcommunity",
26
- "community templates",
27
- "selfcommunity templates",
28
- "react-ui",
29
- "react-components",
30
- "react-templates"
31
- ],
32
- "scripts": {
33
- "prepare": "install-peers -f",
34
- "install-peers": "install-peers -f",
35
- "test": "npm run lint && npm run test-only",
36
- "test-only": "jest --runInBand",
37
- "tdd": "jest --watch --runInBand",
38
- "lint": "eslint ./src test --ext .ts,.tsx,.js",
39
- "prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
40
- "prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
41
- "clean:lib": "rimraf lib",
42
- "clean:node_modules": "rimraf node_modules",
43
- "build:commonjs": "tsc -b tsconfig-cjs.build.json",
44
- "build:esm": "tsc -b tsconfig-esm.build.json",
45
- "build:umd": "webpack --mode production",
46
- "build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
47
- "build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
48
- "prerelease": "yarn run clean:lib && yarn run build"
49
- },
50
- "homepage": "https://www.selfcommunity.com",
51
- "files": [
52
- "lib"
53
- ],
54
- "repository": {
55
- "type": "git",
56
- "url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-templates"
57
- },
58
- "publishConfig": {
59
- "access": "public"
60
- },
61
- "peerDependencies": {
62
- "@emotion/react": "^11.11.3",
63
- "@emotion/styled": "^11.11.0",
64
- "@mui/material": "^5.15.3",
65
- "react": "^17.0.2 || 18",
66
- "react-dom": "17 || 18",
67
- "react-intl": "^6.5.5"
68
- },
69
- "dependencies": {
70
- "@selfcommunity/react-core": "^0.6.7-alpha.1",
71
- "@selfcommunity/react-i18n": "^0.7.7-alpha.1",
72
- "@selfcommunity/react-ui": "^0.10.5-alpha.2",
73
- "@selfcommunity/types": "^0.7.7-alpha.0",
74
- "@types/classnames": "^2.3.1",
75
- "classnames": "^2.3.2"
76
- },
77
- "devDependencies": {
78
- "@types/chai": "^4.2.14",
79
- "@types/enzyme": "^3.10.8",
80
- "@types/jest": "^26.0.20",
81
- "@types/react": "17 || 18",
82
- "@types/react-dom": "17 || 18",
83
- "@types/sinon": "^9.0.10",
84
- "@typescript-eslint/eslint-plugin": "^4.14.2",
85
- "@typescript-eslint/parser": "^4.14.2",
86
- "babel-jest": "^26.6.3",
87
- "chai": "^4.2.0",
88
- "cherry-pick": "^0.5.0",
89
- "enzyme": "^3.10.0",
90
- "enzyme-adapter-react-16": "^1.15.6",
91
- "eslint": "^7.19.0",
92
- "eslint-config-prettier": "^7.2.0",
93
- "eslint-plugin-import": "^2.22.1",
94
- "eslint-plugin-mocha": "^8.0.0",
95
- "eslint-plugin-prettier": "^4.0.0",
96
- "eslint-plugin-react": "^7.22.0",
97
- "eslint-plugin-react-hooks": "^4.2.0",
98
- "faker": "^5.3.1",
99
- "install-peers-cli": "^2.2.0",
100
- "jest": "^26.6.3",
101
- "lodash": "^4.17.15",
102
- "postcss": "^8.2.4",
103
- "prettier": "^2.2.1",
104
- "rimraf": "^3.0.2",
105
- "sass": "^1.32.6",
106
- "sinon": "^9.2.4",
107
- "tslib": "^2.6.2",
108
- "typescript": "^4.1.3",
109
- "webpack": "^5.20.1",
110
- "webpack-atoms": "^17.1.0",
111
- "webpack-bundle-analyzer": "^4.9.0",
112
- "webpack-cli": "^4.5.0"
113
- },
114
- "prettier": {
115
- "printWidth": 150,
116
- "bracketSpacing": false,
117
- "trailingComma": "none",
118
- "singleQuote": true,
119
- "bracketSameLine": true
120
- },
121
- "bugs": {
122
- "url": "https://github.com/selfcommunity/community-js/issues"
123
- },
124
- "gitHead": "8ccbc819d7f6c7d4f092e58893cd7ea6342e3165"
2
+ "name": "@selfcommunity/react-templates",
3
+ "version": "0.4.8-alpha.21",
4
+ "license": "MIT",
5
+ "private": false,
6
+ "main": "./lib/cjs/index.js",
7
+ "module": "./lib/esm/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "require": "./lib/cjs/index.js",
11
+ "import": "./lib/esm/index.js"
12
+ },
13
+ "./*": {
14
+ "require": "./lib/cjs/*",
15
+ "import": "./lib/esm/*"
16
+ }
17
+ },
18
+ "sideEffects": false,
19
+ "description": "React Templates Components to integrate a Community created with SelfCommunity.",
20
+ "author": "SelfCommunity <https://www.selfcommunity.com>",
21
+ "keywords": [
22
+ "react",
23
+ "widgets",
24
+ "community",
25
+ "selfcommunity",
26
+ "community templates",
27
+ "selfcommunity templates",
28
+ "react-ui",
29
+ "react-components",
30
+ "react-templates"
31
+ ],
32
+ "scripts": {
33
+ "prepare": "install-peers -f",
34
+ "install-peers": "install-peers -f",
35
+ "test": "npm run lint && npm run test-only",
36
+ "test-only": "jest --runInBand",
37
+ "tdd": "jest --watch --runInBand",
38
+ "lint": "eslint ./src test --ext .ts,.tsx,.js",
39
+ "prettier": "prettier './**/*.js' './**/*.css' './**/*.md' --write",
40
+ "prettier-list-different": "prettier './**/*.js' './**/*.css' './**/*.md' --list-different",
41
+ "clean:lib": "rimraf lib",
42
+ "clean:node_modules": "rimraf node_modules",
43
+ "build:commonjs": "tsc -b tsconfig-cjs.build.json",
44
+ "build:esm": "tsc -b tsconfig-esm.build.json",
45
+ "build:umd": "webpack --mode production",
46
+ "build:umd:analyze": "webpack --mode production --profile --json > ./lib/umd/stats.json && webpack-bundle-analyzer ./lib/umd/stats.json",
47
+ "build": "yarn clean:lib && yarn build:commonjs && yarn build:esm && yarn build:umd",
48
+ "prerelease": "yarn run clean:lib && yarn run build"
49
+ },
50
+ "homepage": "https://www.selfcommunity.com",
51
+ "files": [
52
+ "lib"
53
+ ],
54
+ "repository": {
55
+ "type": "git",
56
+ "url": "https://github.com/selfcommunity/community-js/tree/main/packages/react-templates"
57
+ },
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
61
+ "peerDependencies": {
62
+ "@emotion/react": "^11.11.3",
63
+ "@emotion/styled": "^11.11.0",
64
+ "@mui/material": "^5.15.3",
65
+ "react": "^17.0.2 || 18",
66
+ "react-dom": "17 || 18",
67
+ "react-intl": "^6.5.5"
68
+ },
69
+ "dependencies": {
70
+ "@selfcommunity/react-core": "^0.6.7-alpha.6",
71
+ "@selfcommunity/react-i18n": "^0.8.0-alpha.0",
72
+ "@selfcommunity/react-ui": "^0.11.0-alpha.3",
73
+ "@selfcommunity/types": "^0.7.7-alpha.1",
74
+ "@types/classnames": "^2.3.1",
75
+ "classnames": "^2.3.2"
76
+ },
77
+ "devDependencies": {
78
+ "@babel/core": "^7.7.4",
79
+ "@babel/preset-env": "^7.25.8",
80
+ "@babel/preset-react": "^7.7.4",
81
+ "@babel/preset-typescript": "^7.7.4",
82
+ "@types/chai": "^4.2.14",
83
+ "@types/enzyme": "^3.10.8",
84
+ "@types/jest": "^26.0.20",
85
+ "@types/react": "17 || 18",
86
+ "@types/react-dom": "17 || 18",
87
+ "@types/sinon": "^9.0.10",
88
+ "@typescript-eslint/eslint-plugin": "^4.14.2",
89
+ "@typescript-eslint/parser": "^4.14.2",
90
+ "babel-jest": "^26.6.3",
91
+ "babel-loader": "^8.2.2",
92
+ "babel-preset-env-modules": "^1.0.0",
93
+ "chai": "^4.2.0",
94
+ "cherry-pick": "^0.5.0",
95
+ "enzyme": "^3.10.0",
96
+ "enzyme-adapter-react-16": "^1.15.6",
97
+ "eslint": "^7.19.0",
98
+ "eslint-config-prettier": "^7.2.0",
99
+ "eslint-plugin-import": "^2.22.1",
100
+ "eslint-plugin-mocha": "^8.0.0",
101
+ "eslint-plugin-prettier": "^4.0.0",
102
+ "eslint-plugin-react": "^7.22.0",
103
+ "eslint-plugin-react-hooks": "^4.2.0",
104
+ "faker": "^5.3.1",
105
+ "install-peers-cli": "^2.2.0",
106
+ "jest": "^26.6.3",
107
+ "lodash": "^4.17.15",
108
+ "postcss": "^8.2.4",
109
+ "prettier": "^2.2.1",
110
+ "rimraf": "^3.0.2",
111
+ "sass": "^1.32.6",
112
+ "sinon": "^9.2.4",
113
+ "tslib": "^2.6.2",
114
+ "typescript": "^4.1.3",
115
+ "webpack": "^5.20.1",
116
+ "webpack-bundle-analyzer": "^4.9.0",
117
+ "webpack-cli": "^4.5.0"
118
+ },
119
+ "prettier": {
120
+ "printWidth": 150,
121
+ "bracketSpacing": false,
122
+ "trailingComma": "none",
123
+ "singleQuote": true,
124
+ "bracketSameLine": true
125
+ },
126
+ "bugs": {
127
+ "url": "https://github.com/selfcommunity/community-js/issues"
128
+ },
129
+ "gitHead": "e8be0be26903b2bc9112ceece21a2313ae1ae416"
125
130
  }