PromucFlow_constructor/app/rts/package.json
Ayangade Adeoluwa b3c4f7c392
feat: AST apis for parsing script and returning identifiers (#16252)
* rts configurations for ast

* update shared dependencies.json for shared ast module

* feat: api for script to identifiers

* fix: typo for identifiers

* feat: api for multiple scripts to get identifiers

* fix: rts config, apis for ast

* fix: removed unnecessary changes for ast modules

* fix: docker image for rts including ast shared module, rts file alias ref

* fix: added comments in build.sh file

Co-authored-by: Aman Agarwal <aman@appsmith.com>
2022-09-12 14:45:47 +05:30

37 lines
954 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",
"build": "./build.sh",
"postinstall": "CURRENT_SCOPE=rts node ../shared/install-dependencies.js",
"start": "./start-server.sh"
},
"dependencies": {
"express-validator": "^6.14.2",
"http-status-codes": "^2.2.0",
"tsc-alias": "^1.7.0"
}
}