mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* test init :: shadecn , tailwind * fix :: warnings * fix :: theming * fix : theming * fix : proper styling * feat :: added base button component * adding storybook for button * updates * netlify node and npm version correction * completed button styles and configg updates * adding more storybook controls dark mode etc * updates * added storybook to gitignore * cleanups * revert changes * restructured files * update netlify config * config change * build command * build command * check * add toml file in frontend * updates * update toml file * update * update toml file * update toml file * revert few changes , review updates * loader size fix * fix : typo * fix : keep button width same on loading * made background as transparent * cleanup * revert * adding prefix * code structure updation * removed unused packages * updated border for buttons * update : review comments * replace clsx with classnames * temp commit for filename change * temp commit * reverting name change commits * fix : auoprefixer warning --------- Co-authored-by: Adish M <adish.madhu@gmail.com>
56 lines
No EOL
2.2 KiB
JSON
56 lines
No EOL
2.2 KiB
JSON
{
|
|
"name": "tooljet",
|
|
"version": "1.18.0",
|
|
"description": "ToolJet is an open-source low-code framework to build and deploy internal tools.",
|
|
"engines": {
|
|
"node": "18.18.2",
|
|
"npm": "9.8.1"
|
|
},
|
|
"lint-staged": {
|
|
"./frontend/src/**/*.{js,jsx}": [
|
|
"eslint --fix"
|
|
],
|
|
"./server/{src,test,plugins,scripts,migrations}/**/*.ts": [
|
|
"eslint --fix"
|
|
],
|
|
"./plugins/{packages}/**/*.ts": [
|
|
"eslint --fix"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@tooljet/cli": "^0.0.13",
|
|
"eslint": "^8.56.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.1.2"
|
|
},
|
|
"scripts": {
|
|
"prebuild:plugins": "npm run install:plugins",
|
|
"install:plugins": "npm --prefix plugins install",
|
|
"build:plugins": "npm --prefix plugins run build",
|
|
"prebuild:plugins:prod": "npm run install:plugins",
|
|
"build:plugins:prod": "NODE_ENV=production npm run build:plugins",
|
|
"postbuild:plugins:prod": "npm --prefix plugins prune --production",
|
|
"prebuild:frontend": "npm --prefix frontend install --production=false",
|
|
"build:frontend": "NODE_ENV=production npm --prefix frontend run build",
|
|
"postbuild:frontend": "npm --prefix frontend prune --production",
|
|
"prebuild:server": "npm --prefix server install --production=false",
|
|
"build:server": "NODE_ENV=production npm --prefix server run build",
|
|
"postbuild:server": "npm --prefix server prune --production",
|
|
"build": "npm run build:plugins:prod && npm run build:frontend && npm run build:server",
|
|
"start:prod": "npm --prefix server run start:prod",
|
|
"db:create": "npm --prefix server run db:create",
|
|
"db:create:prod": "npm --prefix server run db:create:prod",
|
|
"db:migrate": "npm --prefix server run db:migrate",
|
|
"db:migrate:prod": "npm --prefix server run db:migrate:prod",
|
|
"db:seed": "npm --prefix server run db:seed",
|
|
"db:seed:prod": "npm --prefix server run db:seed:prod",
|
|
"db:setup": "npm --prefix server run db:setup",
|
|
"db:setup:prod": "npm --prefix server run db:setup:prod",
|
|
"db:reset": "npm --prefix server run db:reset",
|
|
"db:drop": "npm --prefix server run db:drop",
|
|
"deploy": "cp -a frontend/build/. public/",
|
|
"heroku-postbuild": "./heroku-postbuild.sh",
|
|
"prepare": "husky install",
|
|
"update-version": "node update-version.js"
|
|
}
|
|
} |