mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* Updated package.json to support node 18 * Updated package-lock.json with force install * Updated frontend package.json * Updated server package.json * update frontend package-lock.json * update render dockerfile * update dockerfiles for node 18 * update node version in actions * fix setup script for AMI * install using nvm * debug * source bashrc * change ami os version * change base ami * make use of ubuntu focal lts version * update script * change branch name * revert branch name * update workflow * node upgrade [plugins] modules updated (#5482) * modules updated * adds saphana and oracle package * adds saphana and oracle package * eslint rules for -unresolved and resolved properties --------- Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com> Co-authored-by: Arpit <arpitnath42@gmail.com>
25 lines
545 B
JSON
25 lines
545 B
JSON
{
|
|
"name": "@tooljet-plugins/airtable",
|
|
"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",
|
|
"got": "^11.8.6",
|
|
"nock": "^13.3.0",
|
|
"react": "^17.0.2",
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
}
|