PromucFlow_constructor/app/rts/package.json
Aman Agarwal 3b00508c1e
feat: ast mono repo poc (#15610)
* POC for Shared AST Logic using Yarn Symlinks

* fix: preinstall script for bundling shared packages

* Merge commit

* fix: updated the script to link, unlink the package as shared dep

* fix: updated dependencies

* Add a post-install script and fix yarn.lock file

* Remove commented code

* fix: added verification script, readme, moved scripts to shared

Co-authored-by: Ayangade Adeoluwa <adeoluayangade@yahoo.com>
2022-08-11 20:59:26 +05:30

30 lines
771 B
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.11",
"@types/mongodb": "^3.6.10",
"axios": "^0.21.2",
"express": "^4.17.1",
"loglevel": "^1.7.1",
"mongodb": "^3.6.4",
"socket.io": "^4.5.1",
"socket.io-adapter": "^2.3.2",
"source-map-support": "^0.5.19",
"typescript": "^4.2.3"
},
"scripts": {
"preinstall": "CURRENT_SCOPE=rts node ../shared/build-shared-dep.js",
"postinstall": "CURRENT_SCOPE=rts node ../shared/install-dependencies.js"
}
}