@axinom/mosaic-fe-samples-host 0.1.0-rc.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/README.md +16 -0
  3. package/package.json +74 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @axinom/fe-samples-host
2
+
3
+ ## About the Package
4
+
5
+ This package is part of the Axinom Mosaic development platform. More information
6
+ can be found at https://portal.axinom.com/mosaic.
7
+
8
+ ## License
9
+
10
+ This package can be licensed under the
11
+ [Axinom Products Licensing Agreement](https://portal.axinom.com/mosaic/contracts/products-licensing-agreement)
12
+ or evaluated under the
13
+ [Axinom Products Evaluation Agreement](https://portal.axinom.com/mosaic/contracts/products-evaluation-agreement).
14
+ No part of Axinom's software may be copied, modified, propagated, or distributed
15
+ except in accordance with the terms contained in the Axinom Products Licensing
16
+ Agreement and Axinom Products Evaluation Agreement.
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@axinom/mosaic-fe-samples-host",
3
+ "version": "0.1.0-rc.1",
4
+ "description": "The host application, React components and hooks used when developing fe-sample scenarios",
5
+ "author": "Axinom",
6
+ "license": "PROPRIETARY",
7
+ "keywords": [
8
+ "axinom",
9
+ "mosaic",
10
+ "axinom mosaic"
11
+ ],
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "main": "./dist/index.js",
16
+ "module": "./dist/index.es.js",
17
+ "types": "./dist/index.d.ts",
18
+ "scripts": {
19
+ "clean": "rimraf dist",
20
+ "build": "yarn clean && rollup -c",
21
+ "dev": "rollup -c -w",
22
+ "lint": "eslint . --ext .ts,.tsx,.js --color --cache"
23
+ },
24
+ "dependencies": {
25
+ "@geoffcox/react-splitter": "^2.1.1",
26
+ "react-error-boundary": "^3.1.4"
27
+ },
28
+ "devDependencies": {
29
+ "jest": "26.6.0",
30
+ "react": "^17.0.1",
31
+ "react-dom": "^17.0.1",
32
+ "react-router-dom": "^5.2.0",
33
+ "rimraf": "^3.0.2",
34
+ "rollup": "^2.28.1",
35
+ "semantic-ui-css": "^2.4.1",
36
+ "semantic-ui-react": "^2.0.3",
37
+ "ts-node": "^8.9.0",
38
+ "typescript": "^4.5.4"
39
+ },
40
+ "peerDependencies": {
41
+ "react": ">=17.0.1",
42
+ "react-dom": ">=17.0.1",
43
+ "react-router-dom": ">=5.2.0",
44
+ "semantic-ui-css": ">=2.4.1",
45
+ "semantic-ui-react": ">=2.0.3"
46
+ },
47
+ "eslintConfig": {
48
+ "extends": [
49
+ "react-app",
50
+ "react-app/jest"
51
+ ]
52
+ },
53
+ "browserslist": {
54
+ "production": [
55
+ ">0.2%",
56
+ "not dead",
57
+ "not op_mini all"
58
+ ],
59
+ "development": [
60
+ "last 1 chrome version",
61
+ "last 1 firefox version",
62
+ "last 1 safari version"
63
+ ]
64
+ },
65
+ "babel": {
66
+ "presets": [
67
+ "react-app"
68
+ ]
69
+ },
70
+ "publishConfig": {
71
+ "access": "public"
72
+ },
73
+ "gitHead": "f2418712d6ff17e34df4744b055961a780d4389e"
74
+ }