blob: 585e35f965fbac87ae3446ca2ebe7e8e953570c3 [file] [log] [blame]
Larbi Gharibe9af9732021-03-31 15:08:01 +01001{
Adrien Béraudc4dd44a2021-04-08 01:05:24 -04002 "name": "jami-web-client",
Larbi Gharibe9af9732021-03-31 15:08:01 +01003 "version": "0.1.0",
4 "private": true,
simonc7d52452022-09-23 02:09:42 -04005 "type": "module",
6 "scripts": {
7 "build": "webpack",
simon42930d32022-10-14 14:36:54 -04008 "clean": "rm -rf dist",
9 "lint": "eslint src",
10 "lint:fix": "npm run lint -- --fix",
11 "format": "prettier --write src",
12 "format:check": "prettier --check src",
13 "extract-translations": "i18next"
simonc7d52452022-09-23 02:09:42 -040014 },
15 "browserslist": {
16 "production": [
17 ">0.2%",
18 "not dead"
19 ],
20 "development": [
21 "last 1 chrome version",
22 "last 1 firefox version",
23 "last 1 safari version"
24 ]
25 },
Larbi Gharibe9af9732021-03-31 15:08:01 +010026 "dependencies": {
idillond858c182022-09-16 13:18:26 -040027 "@babel/runtime": "7.18.9",
28 "@emotion/react": "^11.10.0",
29 "@emotion/styled": "^11.10.0",
Adrien Béraud21921aa2022-09-18 13:50:39 -040030 "@mui/icons-material": "^5.10.3",
31 "@mui/lab": "^5.0.0-alpha.99",
32 "@mui/material": "^5.10.5",
idillond858c182022-09-16 13:18:26 -040033 "@reduxjs/toolkit": "^1.8.5",
idillon461c5c92022-09-16 13:47:18 -040034 "@sentry/react": "^7.11.1",
35 "@sentry/tracing": "^7.11.1",
idillond0f1eca2022-09-13 16:13:44 -040036 "@tanstack/react-query": "^4.3.4",
idillond858c182022-09-16 13:18:26 -040037 "@testing-library/jest-dom": "^5.16.5",
38 "@testing-library/react": "^13.3.0",
39 "@testing-library/user-event": "^14.4.3",
idillond858c182022-09-16 13:18:26 -040040 "@types/jest": "^28.1.8",
idillond0f1eca2022-09-13 16:13:44 -040041 "axios": "^0.27.2",
idillon461c5c92022-09-16 13:47:18 -040042 "dayjs": "^1.11.5",
simon42930d32022-10-14 14:36:54 -040043 "dotenv": "^16.0.2",
idillond858c182022-09-16 13:18:26 -040044 "emoji-picker-react": "^3.6.1",
Adrien Béraud21921aa2022-09-18 13:50:39 -040045 "framer-motion": "^7.3.5",
46 "i18next": "^21.9.2",
simon20076982022-10-11 15:04:13 -040047 "jami-web-common": "file:../common",
Adrien Béraud21921aa2022-09-18 13:50:39 -040048 "qrcode.react": "^3.1.0",
simon42930d32022-10-14 14:36:54 -040049 "raw-loader": "^4.0.2",
idillond858c182022-09-16 13:18:26 -040050 "react": "^18.2.0",
51 "react-dom": "^18.2.0",
Larbi Gharibe9af9732021-03-31 15:08:01 +010052 "react-emoji-render": "^1.2.4",
Adrien Béraud3e41e4a2022-05-03 15:39:08 -040053 "react-fetch-hook": "^1.9.5",
Adrien Béraud21921aa2022-09-18 13:50:39 -040054 "react-i18next": "^11.18.6",
55 "react-modal": "^3.15.1",
idillond858c182022-09-16 13:18:26 -040056 "react-redux": "^8.0.2",
Adrien Béraud3e41e4a2022-05-03 15:39:08 -040057 "react-router-dom": "^6.3.0",
Adrien Béraud21921aa2022-09-18 13:50:39 -040058 "socket.io-client": "^4.5.2"
Larbi Gharibe9af9732021-03-31 15:08:01 +010059 },
Adrien Béraudc4dd44a2021-04-08 01:05:24 -040060 "devDependencies": {
Adrien Béraud21921aa2022-09-18 13:50:39 -040061 "@babel/core": "^7.19.1",
62 "@babel/plugin-transform-runtime": "^7.19.1",
63 "@babel/preset-env": "^7.19.1",
idillond858c182022-09-16 13:18:26 -040064 "@babel/preset-react": "^7.18.6",
65 "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
simon42930d32022-10-14 14:36:54 -040066 "@svgr/webpack": "^6.3.1",
idillond858c182022-09-16 13:18:26 -040067 "@types/node": "^18.7.13",
68 "@types/react": "^18.0.17",
69 "@types/react-dom": "^18.0.6",
simon6b9ddfb2022-10-03 00:04:50 -040070 "@types/react-modal": "^3.13.1",
idillond858c182022-09-16 13:18:26 -040071 "babel-loader": "^8.2.5",
72 "copy-webpack-plugin": "^11.0.0",
Adrien Béraud3e41e4a2022-05-03 15:39:08 -040073 "css-loader": "^6.7.1",
simon7a7b4d52022-09-23 02:09:42 -040074 "eslint-plugin-react": "^7.31.8",
75 "eslint-plugin-react-hooks": "^4.6.0",
Adrien Béraud3e41e4a2022-05-03 15:39:08 -040076 "html-webpack-plugin": "^5.5.0",
Adrien Béraud21921aa2022-09-18 13:50:39 -040077 "i18next-parser": "^6.5.0",
idillond858c182022-09-16 13:18:26 -040078 "react-refresh": "^0.14.0",
79 "sass": "^1.54.5",
80 "sass-loader": "^13.0.2",
Adrien Béraud3e41e4a2022-05-03 15:39:08 -040081 "style-loader": "^3.3.1",
idillond858c182022-09-16 13:18:26 -040082 "ts-loader": "^9.3.1",
83 "typescript": "^4.7.4",
84 "webpack": "^5.74.0",
85 "webpack-cli": "^4.10.0"
Larbi Gharibe9af9732021-03-31 15:08:01 +010086 }
87}