mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-27 16:37:42 +00:00
* chore: update bcrypt to version 6.0.0 in package.json * chore: remove unused devDependencies from package.json * Refactor code structure for improved readability and maintainability * Refactor code structure for improved readability and maintainability
27 lines
No EOL
672 B
JSON
27 lines
No EOL
672 B
JSON
{
|
|
"name": "@tooljet-plugins/dynamodb",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"dependencies": {
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"@aws-sdk/client-dynamodb": "^3.971.0",
|
|
"@aws-sdk/client-sts": "^3.971.0",
|
|
"@aws-sdk/credential-providers": "^3.971.0",
|
|
"@aws-sdk/lib-dynamodb": "^3.971.0",
|
|
"react": "^17.0.2",
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
} |