@photonhealth/elements 0.0.80

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 (1) hide show
  1. package/package.json +94 -0
package/package.json ADDED
@@ -0,0 +1,94 @@
1
+ {
2
+ "name": "@photonhealth/elements",
3
+ "version": "0.0.80",
4
+ "description": "",
5
+ "main": "dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "scripts": {
8
+ "start": "vite --port 3000",
9
+ "build": "rimraf dist && vite build",
10
+ "build:watch": "rimraf dist && vite build --watch",
11
+ "prepublish": "npm run build",
12
+ "upload-s3": "npm run upload-s3:package-json && npm run upload-s3:dist && npm run upload-s3:package-json-latest && npm run upload-s3:dist-latest",
13
+ "upload-s3:package-json": "s3-deploy './package.json' --cwd './' --region 'us-east-1' --bucket 'cdn.rx.dev' --filePrefix $PREFIX",
14
+ "upload-s3:dist": "s3-deploy './dist/**' --cwd './dist/' --region 'us-east-1' --bucket 'cdn.rx.dev' --filePrefix $PREFIX/dist",
15
+ "upload-s3:package-json-latest": "s3-deploy './package.json' --cwd './' --region 'us-east-1' --bucket 'cdn.rx.dev' --filePrefix $PREFIX_LATEST",
16
+ "upload-s3:dist-latest": "s3-deploy './dist/**' --cwd './dist/' --region 'us-east-1' --bucket 'cdn.rx.dev' --filePrefix $PREFIX_LATEST/dist",
17
+ "storybook": "start-storybook -p 3000",
18
+ "build-storybook": "build-storybook",
19
+ "lint": "eslint src",
20
+ "lint:only-errors": "eslint src --quiet",
21
+ "lint:fix": "eslint src --fix"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "package.json"
29
+ ],
30
+ "keywords": [],
31
+ "author": "",
32
+ "license": "ISC",
33
+ "devDependencies": {
34
+ "@babel/core": "^7.18.13",
35
+ "@csstools/postcss-sass": "^5.0.1",
36
+ "@storybook/addon-actions": "^6.5.15",
37
+ "@storybook/addon-essentials": "^6.5.15",
38
+ "@storybook/addon-interactions": "^6.5.15",
39
+ "@storybook/addon-links": "^6.5.15",
40
+ "@storybook/builder-vite": "^0.2.6",
41
+ "@storybook/html": "^6.5.15",
42
+ "@storybook/testing-library": "^0.0.13",
43
+ "@types/google.maps": "^3.50.5",
44
+ "@types/lodash": "^4.14.185",
45
+ "@types/node": "^18.7.18",
46
+ "@typescript-eslint/eslint-plugin": "^5.48.1",
47
+ "@typescript-eslint/parser": "^5.48.1",
48
+ "autoprefixer": "^10.4.13",
49
+ "babel-loader": "^8.2.5",
50
+ "css-has-pseudo": "^4.0.1",
51
+ "eslint": "^8.31.0",
52
+ "eslint-plugin-unused-imports": "^2.0.0",
53
+ "fast-glob": "^3.2.12",
54
+ "lerna": "^5.5.4",
55
+ "lit-html": "^2.3.1",
56
+ "open-props": "^1.4.16",
57
+ "postcss": "^8.4.16",
58
+ "postcss-custom-media": "^8.0.2",
59
+ "postcss-jit-props": "^1.0.7",
60
+ "rimraf": "^3.0.2",
61
+ "tailwindcss": "^3.1.8",
62
+ "typescript": "^4.8.4",
63
+ "vite": "^3.0.6",
64
+ "vite-plugin-solid": "^2.3.0"
65
+ },
66
+ "dependencies": {
67
+ "@minht11/solid-virtual-container": "^0.2.1",
68
+ "@photonhealth/sdk": "^1.0.0",
69
+ "@rollup/plugin-typescript": "^8.5.0",
70
+ "@shoelace-style/shoelace": "^2.0.0-beta.82",
71
+ "@solid-primitives/scheduled": "^1.2.0",
72
+ "@solid-primitives/timer": "^1.3.4",
73
+ "@tanstack/solid-virtual": "^3.0.0-beta.6",
74
+ "@tanstack/virtual-core": "^3.0.0-alpha.1",
75
+ "date-fns": "^2.29.3",
76
+ "graphql": "^16.6.0",
77
+ "graphql-tag": "^2.12.6",
78
+ "jwt-decode": "^3.1.2",
79
+ "libphonenumber": "^0.0.10",
80
+ "libphonenumber-js": "^1.10.14",
81
+ "lodash": "^4.17.21",
82
+ "solid-element": "^1.5.6",
83
+ "solid-js": "^1.5.6",
84
+ "superstruct": "^0.16.7",
85
+ "vite-plugin-static-copy": "^0.9.0"
86
+ },
87
+ "exports": {
88
+ ".": {
89
+ "import": "./dist/index.mjs",
90
+ "require": "./dist/index.js"
91
+ }
92
+ },
93
+ "gitHead": "3283ed3794cd092af27cfc26db5ad4535853caf8"
94
+ }