blob: 6eb5ca7ce8282328fb87269e870e8e42668a5970 [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 "scripts": {
simond8ca2f22022-10-11 23:30:55 -04006 "start": "vite",
7 "start:prod": "vite preview",
8 "build": "tsc && vite build",
simon42930d32022-10-14 14:36:54 -04009 "clean": "rm -rf dist",
simond8ca2f22022-10-11 23:30:55 -040010 "test": "jest src",
11 "lint": "eslint .",
simon42930d32022-10-14 14:36:54 -040012 "lint:fix": "npm run lint -- --fix",
13 "format": "prettier --write src",
14 "format:check": "prettier --check src",
15 "extract-translations": "i18next"
simonc7d52452022-09-23 02:09:42 -040016 },
17 "browserslist": {
18 "production": [
19 ">0.2%",
20 "not dead"
21 ],
22 "development": [
23 "last 1 chrome version",
24 "last 1 firefox version",
25 "last 1 safari version"
26 ]
27 },
Larbi Gharibe9af9732021-03-31 15:08:01 +010028 "dependencies": {
idillond858c182022-09-16 13:18:26 -040029 "@emotion/react": "^11.10.0",
30 "@emotion/styled": "^11.10.0",
Adrien Béraud21921aa2022-09-18 13:50:39 -040031 "@mui/icons-material": "^5.10.3",
32 "@mui/lab": "^5.0.0-alpha.99",
33 "@mui/material": "^5.10.5",
idillond858c182022-09-16 13:18:26 -040034 "@reduxjs/toolkit": "^1.8.5",
idillon461c5c92022-09-16 13:47:18 -040035 "@sentry/react": "^7.11.1",
36 "@sentry/tracing": "^7.11.1",
idillond0f1eca2022-09-13 16:13:44 -040037 "@tanstack/react-query": "^4.3.4",
idillond858c182022-09-16 13:18:26 -040038 "@testing-library/jest-dom": "^5.16.5",
39 "@testing-library/react": "^13.3.0",
40 "@testing-library/user-event": "^14.4.3",
idillond858c182022-09-16 13:18:26 -040041 "@types/jest": "^28.1.8",
idillond0f1eca2022-09-13 16:13:44 -040042 "axios": "^0.27.2",
idillon461c5c92022-09-16 13:47:18 -040043 "dayjs": "^1.11.5",
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",
idillond858c182022-09-16 13:18:26 -040049 "react": "^18.2.0",
50 "react-dom": "^18.2.0",
Larbi Gharibe9af9732021-03-31 15:08:01 +010051 "react-emoji-render": "^1.2.4",
Adrien Béraud3e41e4a2022-05-03 15:39:08 -040052 "react-fetch-hook": "^1.9.5",
Adrien Béraud21921aa2022-09-18 13:50:39 -040053 "react-i18next": "^11.18.6",
54 "react-modal": "^3.15.1",
idillond858c182022-09-16 13:18:26 -040055 "react-redux": "^8.0.2",
Adrien Béraud3e41e4a2022-05-03 15:39:08 -040056 "react-router-dom": "^6.3.0",
Adrien Béraud21921aa2022-09-18 13:50:39 -040057 "socket.io-client": "^4.5.2"
Larbi Gharibe9af9732021-03-31 15:08:01 +010058 },
Adrien Béraudc4dd44a2021-04-08 01:05:24 -040059 "devDependencies": {
idillond858c182022-09-16 13:18:26 -040060 "@types/node": "^18.7.13",
61 "@types/react": "^18.0.17",
62 "@types/react-dom": "^18.0.6",
simon6b9ddfb2022-10-03 00:04:50 -040063 "@types/react-modal": "^3.13.1",
simond8ca2f22022-10-11 23:30:55 -040064 "@vitejs/plugin-react": "^2.1.0",
simon7a7b4d52022-09-23 02:09:42 -040065 "eslint-plugin-react": "^7.31.8",
66 "eslint-plugin-react-hooks": "^4.6.0",
Adrien Béraud21921aa2022-09-18 13:50:39 -040067 "i18next-parser": "^6.5.0",
idillond858c182022-09-16 13:18:26 -040068 "sass": "^1.54.5",
idillond858c182022-09-16 13:18:26 -040069 "typescript": "^4.7.4",
simond8ca2f22022-10-11 23:30:55 -040070 "vite": "^3.1.8",
71 "vite-plugin-svgr": "^2.2.2"
Larbi Gharibe9af9732021-03-31 15:08:01 +010072 }
73}