@flarehr/superhero-workplace-policies 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.
- package/LICENCE +1 -0
- package/package.json +30 -0
package/LICENCE
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Flare HR Pty Ltd © 2015-2023
|
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@flarehr/superhero-workplace-policies",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Flare Superhero Workplace Policies Components",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"postinstall": "dotnet tool restore",
|
|
11
|
+
"start": "dotnet fable watch src -o dist -e .jsx --run vite --base=/",
|
|
12
|
+
"build": "dotnet fable src -o dist -e .jsx --run vite build"
|
|
13
|
+
},
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"preact": "^10.13.1",
|
|
16
|
+
"preact-custom-element": "^4.2.1",
|
|
17
|
+
"react-dropzone": "^14.2.3",
|
|
18
|
+
"@headlessui/react": "^1.7.8"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@preact/preset-vite": "^2.5.0",
|
|
22
|
+
"@tailwindcss/forms": "^0.5.3",
|
|
23
|
+
"@vitejs/plugin-react": "^2.1.0",
|
|
24
|
+
"autoprefixer": "^10.4.4",
|
|
25
|
+
"postcss": "^8.4.18",
|
|
26
|
+
"tailwindcss": "^3.2.1",
|
|
27
|
+
"vite": "^3.1.0",
|
|
28
|
+
"vite-plugin-svgr": "^2.2.2"
|
|
29
|
+
}
|
|
30
|
+
}
|