blob: f8e046a5a3bb89a6aac052cd9047598e46fa0385 [file] [log] [blame]
Larbi Gharibe9af9732021-03-31 15:08:01 +01001{
Adrien Béraudc4dd44a2021-04-08 01:05:24 -04002 "name": "jami-web-server",
Larbi Gharibe9af9732021-03-31 15:08:01 +01003 "version": "1.0.0",
4 "description": "Jaas Web API that handles client requests to Jami daemon",
simonc7d52452022-09-23 02:09:42 -04005 "license": "ISC",
6 "author": "Larbi Gharib",
7 "type": "module",
8 "main": "app.ts",
9 "scripts": {
10 "build": "npm run build-client",
11 "build:prod": "tsc && NODE_ENV=production npm run build-client",
12 "build-client": "cd client && webpack",
13 "clean": "rm -rf dist client/dist",
14 "clean-all": "npm run clean && rm -rf node_modules client/node_modules",
15 "start": "nodemon",
16 "start:prod": "NODE_ENV=production node dist/app.js"
17 },
Larbi Gharibe9af9732021-03-31 15:08:01 +010018 "dependencies": {
Adrien Béraud21921aa2022-09-18 13:50:39 -040019 "@sentry/node": "^7.13.0",
20 "@sentry/tracing": "^7.13.0",
idillond858c182022-09-16 13:18:26 -040021 "body-parser": "^1.20.0",
22 "connect-redis": "^6.1.3",
Adrien Béraud3e41e4a2022-05-03 15:39:08 -040023 "cookie-parser": "^1.4.6",
Adrien Béraud21921aa2022-09-18 13:50:39 -040024 "core-js": "^3.25.1",
Larbi Gharibe9af9732021-03-31 15:08:01 +010025 "cors": "^2.8.5",
Adrien Béraud21921aa2022-09-18 13:50:39 -040026 "dotenv": "^16.0.2",
idillond858c182022-09-16 13:18:26 -040027 "ejs": "^3.1.8",
Larbi Gharibe9af9732021-03-31 15:08:01 +010028 "env": "0.0.2",
idillond858c182022-09-16 13:18:26 -040029 "express": "^4.18.1",
30 "express-session": "^1.17.3",
31 "passport": "^0.6.0",
Larbi Gharibe9af9732021-03-31 15:08:01 +010032 "passport-local": "^1.0.0",
33 "passport-session": "^1.0.2",
Larbi Gharibe9af9732021-03-31 15:08:01 +010034 "path": "^0.12.7",
35 "redis-url": "^1.2.1",
Adrien Béraud21921aa2022-09-18 13:50:39 -040036 "socket.io": "^4.5.2"
Larbi Gharibe9af9732021-03-31 15:08:01 +010037 },
38 "devDependencies": {
idillond858c182022-09-16 13:18:26 -040039 "@svgr/webpack": "^6.3.1",
Adrien Béraud2b3c2cd2022-09-18 14:24:33 -040040 "@typescript-eslint/eslint-plugin": "^5.37.0",
41 "@typescript-eslint/parser": "^5.37.0",
Adrien Béraud21921aa2022-09-18 13:50:39 -040042 "cypress": "^10.8.0",
Adrien Béraud2b3c2cd2022-09-18 14:24:33 -040043 "eslint": "^8.23.1",
44 "eslint-plugin-react": "^7.31.8",
Adrien Béraudb7890222021-04-15 18:32:25 -040045 "jami-web-client": "file:client",
Adrien Béraud21921aa2022-09-18 13:50:39 -040046 "llnode": "^4.0.0",
47 "nodemon": "^2.0.20",
Adrien Béraude5cad982021-06-07 10:05:50 -040048 "raw-loader": "^4.0.2",
simonc7d52452022-09-23 02:09:42 -040049 "ts-node": "^10.9.1",
50 "typescript": "^4.8.3",
idillond858c182022-09-16 13:18:26 -040051 "webpack-dev-middleware": "^5.3.3",
52 "webpack-hot-middleware": "^2.25.2"
simonc7d52452022-09-23 02:09:42 -040053 }
Larbi Gharibe9af9732021-03-31 15:08:01 +010054}