PromucFlow_constructor/deploy/docker/utils/package.json
Sumesh Pradhan 0fe6145435
fix: moved jest to devdependencies for appsmithctl and updated dockerfile to exclude it during install (#26350)
Update:
- Mobed jest to` devDependenies` of package manifest.
- Updated Dockerfile to install utils with `--only=prod` arg for npm
install cmds.

Tested manually
2023-08-16 16:39:11 +05:30

32 lines
641 B
JSON

{
"name": "appsmith_utils",
"version": "1.0.0",
"description": "appsmith utils tool",
"main": "bin/index.js",
"author": "",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/appsmithorg/appsmith.git",
"directory": "deploy/docker"
},
"dependencies": {
"cli-progress": "^3.11.2",
"dotenv": "10.0.0",
"mongodb": "^5.7.0",
"nodemailer": "6.7.5",
"readline-sync": "1.4.10",
"shelljs": "0.8.5"
},
"devDependencies": {
"jest": "^29.1.2"
},
"bin": {
"appsmithctl": "./bin/index.js"
},
"scripts": {
"test": "jest"
}
}