mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-02-11 14:20:07 +08:00
61 lines
2.1 KiB
JSON
61 lines
2.1 KiB
JSON
{
|
|
"name": "@lowdefy/lowdefy",
|
|
"version": "4.0.0-alpha.6",
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"description": "Lowdefy monorepo",
|
|
"homepage": "https://lowdefy.com",
|
|
"bugs": {
|
|
"url": "https://github.com/lowdefy/lowdefy/issues"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Sam Tolmay",
|
|
"url": "https://github.com/SamTolmay"
|
|
},
|
|
{
|
|
"name": "Gerrie van Wyk",
|
|
"url": "https://github.com/Gervwyk"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lowdefy/lowdefy.git"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"packages/blocks/*",
|
|
"packages/connections/*",
|
|
"packages/plugins/**",
|
|
"packages/utils/*"
|
|
],
|
|
"scripts": {
|
|
"build": "lerna run build",
|
|
"build:dev": "NODE_ENV=development lerna run build",
|
|
"clean": "lerna run clean",
|
|
"lerna:version": "lerna version --no-git-tag-version",
|
|
"lerna:publish": "lerna publish from-git",
|
|
"postversion": "yarn install",
|
|
"prettier": "prettier --config .prettierrc --write **/*.js",
|
|
"start:server-dev": "yarn workspace @lowdefy/server-dev start --package-manager yarn --config-directory ../../app",
|
|
"start": "yarn workspace @lowdefy/server build:lowdefy --config-directory ../../app && yarn && yarn workspace @lowdefy/server build:next && yarn workspace @lowdefy/server start",
|
|
"start:dev": "yarn workspace @lowdefy/server build:lowdefy --config-directory ../../app && yarn && yarn workspace @lowdefy/server dev",
|
|
"test": "lerna run test",
|
|
"test:ci": "yarn install --immutable --immutable-cache --check-cache && yarn build && yarn test --ignore='@lowdefy/format' --ignore='@lowdefy/block-dev'"
|
|
},
|
|
"devDependencies": {
|
|
"@yarnpkg/pnpify": "3.1.0-rc.2",
|
|
"eslint": "8.3.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-import-resolver-node": "0.3.6",
|
|
"eslint-plugin-import": "2.25.3",
|
|
"eslint-plugin-jsx-a11y": "6.5.1",
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
"eslint-plugin-react": "7.27.1",
|
|
"eslint-plugin-react-hooks": "4.3.0",
|
|
"lerna": "4.0.0",
|
|
"prettier": "2.4.1"
|
|
},
|
|
"packageManager": "yarn@3.1.0"
|
|
}
|