PromucFlow_constructor/app/rts/package.json
Nayan 95b5e8ce9e
chore: Removed comment related codes from RTS (#20639)
As part of the removing comment related codes, this PR removes the unused codes from RTS.
2023-02-17 23:29:26 +06:00

41 lines
1.3 KiB
JSON

{
"name": "appsmith-rts",
"version": "0.0.1",
"description": "Realtime component microservice for Appsmith",
"main": "index.js",
"author": "Appsmith Team",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "^16.14.0",
"npm": "^8.5.5"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"axios": "^1.2.0",
"jest": "^29.3.1",
"source-map-support": "^0.5.19",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"tsc-alias": "^1.8.2",
"typescript": "^4.5.5"
},
"scripts": {
"test:unit": "export APPSMITH_API_BASE_URL=http && $(npm bin)/jest -b --colors --no-cache --silent --coverage --collectCoverage=true --coverageDirectory='./' --coverageReporters='json-summary'",
"test:jest": "export APPSMITH_API_BASE_URL=http && $(npm bin)/jest --watch ",
"preinstall": "CURRENT_SCOPE=rts node ../shared/build-shared-dep.js",
"build": "./build.sh",
"postinstall": "CURRENT_SCOPE=rts node ../shared/install-dependencies.js",
"start": "./start-server.sh"
},
"dependencies": {
"express": "^4.18.2",
"express-validator": "^6.14.2",
"http-status-codes": "^2.2.0",
"loglevel": "^1.8.1",
"socket.io": "^4.5.4",
"socket.io-adapter": "^2.4.0"
}
}