@flarehr/apollo-personal-details-app 0.0.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/LICENCE +1 -0
  2. package/README.md +27 -0
  3. package/package.json +26 -0
package/LICENCE ADDED
@@ -0,0 +1 @@
1
+ Flare HR Pty Ltd © 2015-2021
package/README.md ADDED
@@ -0,0 +1,27 @@
1
+ # Basic.Profile.UI.PersonalDetails
2
+
3
+ ## Installation
4
+
5
+ To install the project's dependencies, run the following commands:
6
+
7
+ ```bash
8
+ dotnet tool restore
9
+ dotnet restore
10
+ npm install
11
+ ```
12
+
13
+ ## Development
14
+
15
+ To start the development server, run the following commands:
16
+
17
+ ```bash
18
+ npm start
19
+ ```
20
+
21
+ ## Build
22
+
23
+ To build the project, run the following commands:
24
+
25
+ ```bash
26
+ npm run build
27
+ ```
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@flarehr/apollo-personal-details-app",
3
+ "version": "0.0.1",
4
+ "description": "Flare Personal Details Component",
5
+ "license": "SEE LICENSE IN LICENSE.md",
6
+ "files": [
7
+ "dist/"
8
+ ],
9
+ "scripts": {
10
+ "start": "dotnet fable watch ./ --run webpack serve --mode development",
11
+ "build": "dotnet fable ./ && webpack --mode production"
12
+ },
13
+ "dependencies": {
14
+ "preact": "^10.5.12",
15
+ "preact-custom-element": "^4.2.1",
16
+ "react-content-loader": "^6.0.3",
17
+ "reactstrap": "^8.9.0"
18
+ },
19
+ "devDependencies": {
20
+ "html-webpack-plugin": "^4.5.2",
21
+ "raw-loader": "^4.0.2",
22
+ "webpack": "^4.46.0",
23
+ "webpack-cli": "^4.5.0",
24
+ "webpack-dev-server": "^3.11.2"
25
+ }
26
+ }