mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-25 01:00:13 -04:00
102 lines
3.6 KiB
JSON
102 lines
3.6 KiB
JSON
{
|
|
"private": true,
|
|
"description": "",
|
|
"scripts": {
|
|
"build": "yarn run locale:generate && cross-env NODE_ENV=production FORCE_COLOR=1 lerna run build --stream",
|
|
"build:codesandbox": "yarn run locale:generate && cross-env NODE_ENV=production CODESANDBOX=1 FORCE_COLOR=1 lerna run build --stream --scope \"@nebula.js/{stardust,theme,locale,conversion}\"",
|
|
"build:watch": "FORCE_COLOR=1 lerna run build:watch --stream --concurrency 99 --no-sort",
|
|
"format": "prettier --write '**/**/*'",
|
|
"locale:verify": "node tools/verify-translations.js",
|
|
"locale:generate": "node apis/locale/scripts/generate-all.js",
|
|
"lint": "eslint packages apis commands --ext .js,.jsx",
|
|
"lint:check": "eslint --print-config ./aw.config.js | eslint-config-prettier-check",
|
|
"start": "MONO=true ./commands/cli/lib/index.js serve --entry ./test/fixtures/viz/table",
|
|
"start:ui": "start-storybook",
|
|
"spec": "lerna run spec --stream --concurrency 99",
|
|
"test": "yarn run test:unit",
|
|
"mashup": "node scripts/start-mashup.js",
|
|
"test:mashup": "aw puppet -c aw.config.js --testExt '*.int.js' --glob 'test/mashup/**/*.int.js'",
|
|
"test:integration": "aw puppet -c aw.config.js --testExt '*.int.js' --glob 'test/integration/*.int.js'",
|
|
"test:component": "aw puppet -c aw.config.js --testExt '*.comp.js' --glob 'test/component/**/*.comp.js'",
|
|
"test:unit": "aw -c aw.config.js --nyc.reportDir coverage/unit --coverage"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/qlik-oss/nebula.js.git"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "pretty-quick --staged",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS && lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx}": [
|
|
"eslint"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@after-work.js/aw": "6.0.14",
|
|
"@babel/cli": "7.12.1",
|
|
"@babel/core": "7.12.3",
|
|
"@babel/helper-plugin-utils": "7.10.4",
|
|
"@babel/plugin-transform-react-jsx": "7.12.1",
|
|
"@babel/preset-env": "7.12.1",
|
|
"@babel/preset-react": "7.12.1",
|
|
"@commitlint/cli": "9.1.2",
|
|
"@commitlint/config-conventional": "9.1.2",
|
|
"@rollup/plugin-commonjs": "16.0.0",
|
|
"@rollup/plugin-json": "4.1.0",
|
|
"@rollup/plugin-node-resolve": "10.0.0",
|
|
"@rollup/plugin-replace": "2.3.4",
|
|
"@storybook/addon-docs": "6.0.28",
|
|
"@storybook/addon-knobs": "6.0.28",
|
|
"@storybook/react": "6.0.28",
|
|
"babel-loader": "8.1.0",
|
|
"babel-plugin-istanbul": "6.0.0",
|
|
"body-parser": "1.19.0",
|
|
"cross-env": "7.0.2",
|
|
"enigma.js": "2.7.2",
|
|
"eslint": "7.12.1",
|
|
"eslint-config-airbnb": "18.2.0",
|
|
"eslint-config-prettier": "6.15.0",
|
|
"eslint-plugin-import": "2.22.1",
|
|
"eslint-plugin-jsx-a11y": "6.4.1",
|
|
"eslint-plugin-mocha": "8.0.0",
|
|
"eslint-plugin-prettier": "3.1.4",
|
|
"eslint-plugin-react": "7.21.5",
|
|
"express": "4.17.1",
|
|
"husky": "4.3.0",
|
|
"jimp": "0.16.1",
|
|
"lerna": "3.22.1",
|
|
"lint-staged": "10.5.1",
|
|
"mocha-junit-reporter": "2.0.0",
|
|
"picasso-plugin-q": "0.34.0",
|
|
"picasso.js": "0.34.0",
|
|
"prettier": "2.1.2",
|
|
"pretty-quick": "3.1.0",
|
|
"qix-faker": "0.3.0",
|
|
"qlik-sse": "0.3.0",
|
|
"rollup": "2.33.1",
|
|
"rollup-plugin-babel": "4.4.0",
|
|
"rollup-plugin-dependency-flow": "0.3.0",
|
|
"rollup-plugin-sass": "1.2.2",
|
|
"rollup-plugin-terser": "7.0.2",
|
|
"scriptappy-from-jsdoc": "0.7.0",
|
|
"yargs": "16.1.0"
|
|
},
|
|
"resolutions": {
|
|
"**/caniuse-lite": "1.0.30001154",
|
|
"**/react": "17.0.1",
|
|
"**/react-dom": "17.0.1",
|
|
"**/react-is": "17.0.1"
|
|
},
|
|
"workspaces": [
|
|
"generated/*",
|
|
"packages/*",
|
|
"commands/*",
|
|
"apis/*",
|
|
"test/component/*"
|
|
]
|
|
}
|