superset/superset-frontend/temporary_superset_ui/superset-ui/plugins/superset-ui-plugins/package.json

104 lines
3.4 KiB
JSON
Raw Normal View History

2019-01-23 15:31:45 -05:00
{
2019-02-22 20:30:35 -05:00
"name": "@superset-ui/plugins-monorepo",
2019-01-23 15:31:45 -05:00
"version": "0.0.0",
2019-02-22 20:30:35 -05:00
"description": "Superset UI Plugins",
2019-01-23 15:31:45 -05:00
"private": true,
"scripts": {
2019-02-22 19:58:15 -05:00
"build": "yarn build:cjs && yarn build:esm && yarn run type:dts && yarn build:assets",
2019-02-22 21:00:36 -05:00
"build:cjs": "NODE_ENV=production beemo babel --extensions=\".js,.jsx,.ts,.tsx\" ./src --out-dir lib/ --minify --workspaces=\"@superset-ui/!(plugins-demo)\"",
"build:esm": "NODE_ENV=production beemo babel --extensions=\".js,.jsx,.ts,.tsx\" ./src --out-dir esm/ --esm --minify --workspaces=\"@superset-ui/!(plugins-demo)\"",
2019-01-23 17:01:58 -05:00
"build:assets": "node ./buildAssets.js",
"commit": "git-cz",
2019-02-22 19:58:15 -05:00
"type": "NODE_ENV=production beemo typescript --workspaces=\"@superset-ui/(plugin-*)\" --noEmit",
"type:dts": "NODE_ENV=production beemo typescript --workspaces=\"@superset-ui/(plugin-*)\" --emitDeclarationOnly",
2019-01-23 15:31:45 -05:00
"lint": "beemo create-config prettier && beemo eslint \"./packages/*/{src,test,storybook}/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "beemo create-config prettier && beemo eslint --fix \"./packages/*/{src,test,storybook}/**/*.{js,jsx,ts,tsx}\"",
"jest": "beemo jest --color --coverage --react",
"postrelease": "lerna run gh-pages",
"prepare-release": "git checkout master && git pull --rebase origin master && lerna bootstrap && yarn run test",
"prerelease": "yarn run build",
"pretest": "yarn run lint",
"prettier": "beemo prettier \"./packages/*/{src,test,storybook}/**/*.{js,jsx,ts,tsx,json,md}\"",
"release": "yarn run prepare-release && lerna publish && yarn run postrelease",
2019-02-22 19:58:15 -05:00
"test": "yarn run type && yarn run jest",
"test:watch": "yarn run lint:fix && beemo create-config jest --react && jest --watch"
2019-01-23 15:31:45 -05:00
},
2019-02-22 20:30:35 -05:00
"repository": "https://github.com/apache-superset/superset-ui-plugins.git",
2019-01-23 15:31:45 -05:00
"keywords": [
"apache",
"superset",
"data",
"analytics",
"analysis",
"visualization",
"react",
"d3",
"data-ui",
"vx"
],
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/config-lerna-scopes": "^7.5.1",
"@commitlint/prompt-cli": "^7.5.0",
2019-02-22 19:26:17 -05:00
"@superset-ui/build-config": "^0.0.3",
"@superset-ui/chart": "^0.9.6",
"@superset-ui/color": "^0.9.5",
"@superset-ui/connection": "^0.9.5",
"@superset-ui/core": "^0.9.5",
2019-02-22 19:26:17 -05:00
"@superset-ui/dimension": "^0.9.3",
"@superset-ui/number-format": "^0.9.5",
"@superset-ui/time-format": "^0.9.5",
"@superset-ui/translation": "^0.9.5",
"commitizen": "^3.0.7",
2019-01-23 17:01:58 -05:00
"fast-glob": "^2.2.6",
"fs-extra": "^7.0.1",
"git-cz": "^1.8.0",
2019-01-23 15:31:45 -05:00
"husky": "^1.1.2",
"lerna": "^3.2.1",
"lint-staged": "^8.0.4",
"react": "^16.6.0",
"react-dom": "^16.6.0",
2019-01-23 15:31:45 -05:00
"yarn": "^1.9.4"
},
"engines": {
"node": ">=8.10.0"
},
"beemo": {
2019-02-22 19:26:17 -05:00
"module": "@superset-ui/build-config",
2019-01-23 15:31:45 -05:00
"drivers": [
"babel",
"eslint",
{
"driver": "jest",
"env": {
"NODE_ENV": "test"
}
},
"prettier",
"typescript"
]
},
"workspaces": [
"./packages/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
2019-01-23 15:31:45 -05:00
}
},
"lint-staged": {
"./packages/*/{src,test,storybook}/**/*.{js,jsx,ts,tsx,json,md}": [
"yarn run prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "git-cz"
}
2019-01-23 15:31:45 -05:00
}
}