-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@ethora/chat-component",
"version": "24.11.16",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"lint:fix": "npx eslint --fix && prettier . --write"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.22",
"@types/styled-components": "^5.1.34",
"@xmpp/client": "^0.13.1",
"axios": "^1.7.2",
"firebase": "^10.13.2",
"js-sha256": "^0.11.0",
"ltx": "^3.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.0",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"styled-components": "^6.1.8",
"uuid": "^9.0.1",
"wavesurfer.js": "^7.8.8"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/xmpp__client": "^0.13.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"prettier": "3.2.5",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1"
},
"description": "1. npm create vite@latest 2. select name of project, select type (react/js) 3. cd project-name 4. npm i 5. npm i @ethora/chat-component 6. go to file src/App.tsx and replace it with this code",
"directories": {
"lib": "lib"
},
"author": "Ethora",
"license": "AGPL",
"keywords": [
"chat",
"messaging",
"react",
"react-component",
"messenger",
"reactjs",
"web3",
"xmpp",
"ethora"
]
}