@vlprojects-chat/chat 0.6.63 → 0.7.3

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.
@@ -0,0 +1,3 @@
1
+ # https://www.robotstxt.org/robotstxt.html
2
+ User-agent: *
3
+ Disallow:
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@vlprojects-chat/chat",
3
3
  "author": "vlprojects",
4
- "version": "0.6.63",
4
+ "version": "0.7.3",
5
5
  "description": "VLprojects chat",
6
6
  "license": "ISC",
7
- "main": "dist/index.js",
8
7
  "types": "dist/index.d.ts",
9
- "module": "dist/index.es.js",
8
+ "main": "./dist/index.mjs",
9
+ "module": "./dist/index.mjs",
10
10
  "files": [
11
11
  "dist"
12
12
  ],
@@ -15,12 +15,9 @@
15
15
  "url": "git+ssh://git@github.com/VLprojects/chat.git"
16
16
  },
17
17
  "scripts": {
18
- "start": "webpack serve --mode development --config webpack/webpack.config.ts --env target=development",
19
- "build": "rm -rf dist && webpack --mode production --config webpack/webpack.config.ts --env target=production",
20
- "build:stage": "rm -rf dist && webpack --mode production --config webpack/webpack.config.ts --env target=stage",
18
+ "start": "vite",
21
19
  "lint:js": "eslint ./src --ext .ts,.tsx",
22
- "client:build:prod:stats": "webpack --mode production --config webpack/webpack.config.ts --env test --profile --json > build/stats.json",
23
- "webpack-bundle-analyzer": "webpack-bundle-analyzer build/stats.json"
20
+ "build": "tsc --noEmit && vite build --mode production"
24
21
  },
25
22
  "browserslist": {
26
23
  "production": [
@@ -35,8 +32,9 @@
35
32
  ]
36
33
  },
37
34
  "dependencies": {
38
- "@emotion/react": "^11.7.1",
39
- "@emotion/styled": "^11.6.0",
35
+ "@emotion/css": "^11.11.2",
36
+ "@emotion/react": "^11.10.6",
37
+ "@emotion/styled": "^11.10.6",
40
38
  "@mui/icons-material": "^5.8.2",
41
39
  "@mui/lab": "5.0.0-alpha.65",
42
40
  "@mui/material": "^5.3.0",
@@ -60,8 +58,9 @@
60
58
  "mobx-react": "^7.2.1",
61
59
  "mobx-react-lite": "^3.2.3",
62
60
  "mobx-utils": "^6.0.4",
63
- "notistack": "^2.0.3",
61
+ "notistack": "^3.0.1",
64
62
  "qs": "^6.10.3",
63
+ "react-dropzone": "^14.2.3",
65
64
  "react-error-boundary": "^3.1.4",
66
65
  "react-final-form": "^6.5.7",
67
66
  "react-final-form-arrays": "^3.1.3",
@@ -69,7 +68,8 @@
69
68
  "react-virtuoso": "^4.1.0",
70
69
  "route-parser": "^0.0.5",
71
70
  "serialize-error": "^11.0.3",
72
- "ua-parser-js": "^1.0.34"
71
+ "ua-parser-js": "^1.0.34",
72
+ "uuid": "^9.0.1"
73
73
  },
74
74
  "lint-staged": {
75
75
  "*.{js,jsx,ts,tsx,json,css,scss,md}": "prettier --write"
@@ -82,6 +82,8 @@
82
82
  "@babel/preset-react": "^7.16.7",
83
83
  "@babel/preset-typescript": "^7.16.7",
84
84
  "@babel/runtime": "^7.16.7",
85
+ "@types/events": "^3.0.3",
86
+ "@emotion/babel-plugin": "^11.11.0",
85
87
  "@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
86
88
  "@types/dotenv-webpack": "^7.0.3",
87
89
  "@types/flat": "^5.0.2",
@@ -94,38 +96,33 @@
94
96
  "@types/react-router-dom": "^5.3.3",
95
97
  "@types/route-parser": "^0.1.4",
96
98
  "@types/ua-parser-js": "^0.7.36",
99
+ "@types/uuid": "^9.0.8",
97
100
  "@typescript-eslint/eslint-plugin": "^5.10.0",
98
101
  "@typescript-eslint/parser": "^5.10.0",
102
+ "@vitejs/plugin-react": "^4.2.1",
99
103
  "autoprefixer": "9.0.0",
100
104
  "babel-loader": "^8.2.3",
101
105
  "cross-env": "^7.0.3",
102
106
  "dotenv": "^14.2.0",
103
- "dotenv-webpack": "^7.0.3",
104
107
  "eslint-config-airbnb-typescript": "^16.1.0",
105
108
  "eslint-config-prettier": "^8.3.0",
106
109
  "eslint-plugin-import": "^2.25.4",
107
110
  "eslint-plugin-jsx-a11y": "^6.5.1",
108
111
  "eslint-plugin-react": "^7.28.0",
109
112
  "eslint-plugin-react-hooks": "^4.3.0",
110
- "fork-ts-checker-webpack-plugin": "^6.5.0",
111
- "html-webpack-plugin": "^5.5.0",
112
113
  "prettier": "^2.5.1",
113
114
  "react": "^17.0.2",
114
115
  "react-dom": "^17.0.2",
115
116
  "react-refresh": "^0.11.0",
116
117
  "source-map-loader": "^3.0.1",
117
118
  "ts-node": "^10.4.0",
118
- "tsconfig-paths-webpack-plugin": "^3.5.2",
119
119
  "tslib": "^2.3.1",
120
120
  "type-fest": "^2.10.0",
121
121
  "typescript": "^4.5.4",
122
122
  "url-loader": "^4.1.1",
123
- "webpack": "^5.67.0",
124
- "webpack-bundle-analyzer": "^4.5.0",
125
- "webpack-cli": "^4.9.2",
126
- "webpack-dev-server": "^4.7.3",
127
- "webpack-merge": "^5.8.0",
128
- "webpack-node-externals": "^3.0.0"
123
+ "vite": "^5.1.5",
124
+ "vite-plugin-node-polyfills": "^0.21.0",
125
+ "vite-tsconfig-paths": "^4.3.1"
129
126
  },
130
127
  "peerDependencies": {
131
128
  "@emotion/react": "^11.x.x",
package/dist/index.html DELETED
@@ -1 +0,0 @@
1
- <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="imp.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><title>Chat</title><script defer="defer" src="index.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="livedigital-chat" style="height: 800px; width: 360px; margin: auto"></div></body></html>