PromucFlow_constructor/app/rts/package.json
Aman Agarwal 9b8e684d17
fix: failing rts build due to jest config (#17177)
* fix: failing rts build due to jest config

* fix: changed coverage directory
2022-09-29 16:12:07 +05:30

43 lines
1.4 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.11",
"@types/jest": "^29.0.3",
"@types/mongodb": "^3.6.10",
"axios": "^0.21.2",
"express": "^4.17.1",
"jest": "^29.0.3",
"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",
"ts-jest": "^29.0.2",
"typescript": "^4.2.3"
},
"scripts": {
"test:unit": "export APPSMITH_API_BASE_URL=http APPSMITH_MONGODB_URI=mongodb && $(npm bin)/jest -b --colors --no-cache --silent --coverage --collectCoverage=true --coverageDirectory='./' --coverageReporters='json-summary'",
"test:jest": "export APPSMITH_API_BASE_URL=http APPSMITH_MONGODB_URI=mongodb && $(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-validator": "^6.14.2",
"http-status-codes": "^2.2.0",
"supertest": "^6.2.4",
"tsc-alias": "^1.7.0"
}
}