mirror of
https://github.com/qlik-oss/nebula.js.git
synced 2026-05-25 01:00:13 -04:00
BREAKING CHANGE: nucleus and supernova are no longer public packages and are both replaced by stardust
99 lines
3.4 KiB
JSON
99 lines
3.4 KiB
JSON
{
|
|
"private": true,
|
|
"description": "",
|
|
"scripts": {
|
|
"build": "cross-env NODE_ENV=production FORCE_COLOR=1 lerna run build --stream",
|
|
"build:codesandbox": "cross-env NODE_ENV=production CODESANDBOX=1 FORCE_COLOR=1 lerna run build --stream --scope \"@nebula.js/{stardust,theme,locale}\"",
|
|
"build:watch": "FORCE_COLOR=1 lerna run build:watch --stream --concurrency 99 --no-sort",
|
|
"format": "prettier --write '**/**/*'",
|
|
"locale:verify": "node tools/verify-translations.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/integration/sn.js",
|
|
"start:ui": "start-storybook",
|
|
"spec": "lerna run spec --stream --concurrency 99",
|
|
"test": "yarn run test:unit",
|
|
"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.13",
|
|
"@babel/cli": "7.8.4",
|
|
"@babel/core": "7.9.0",
|
|
"@babel/helper-plugin-utils": "7.8.3",
|
|
"@babel/plugin-transform-react-jsx": "7.9.4",
|
|
"@babel/preset-env": "7.9.0",
|
|
"@babel/preset-react": "7.9.4",
|
|
"@commitlint/cli": "8.3.5",
|
|
"@commitlint/config-conventional": "8.3.4",
|
|
"@rollup/plugin-commonjs": "11.0.2",
|
|
"@rollup/plugin-json": "4.0.2",
|
|
"@rollup/plugin-node-resolve": "7.1.1",
|
|
"@rollup/plugin-replace": "2.3.1",
|
|
"@storybook/addon-docs": "5.3.18",
|
|
"@storybook/addon-knobs": "5.3.18",
|
|
"@storybook/react": "5.3.18",
|
|
"babel-loader": "8.1.0",
|
|
"babel-plugin-istanbul": "6.0.0",
|
|
"body-parser": "1.19.0",
|
|
"cross-env": "7.0.2",
|
|
"enigma.js": "2.6.3",
|
|
"eslint": "6.8.0",
|
|
"eslint-config-airbnb": "18.1.0",
|
|
"eslint-config-prettier": "6.10.1",
|
|
"eslint-plugin-import": "2.20.2",
|
|
"eslint-plugin-jsx-a11y": "6.2.3",
|
|
"eslint-plugin-mocha": "6.3.0",
|
|
"eslint-plugin-prettier": "3.1.2",
|
|
"eslint-plugin-react": "7.19.0",
|
|
"express": "4.17.1",
|
|
"husky": "4.2.3",
|
|
"jimp": "0.10.1",
|
|
"lerna": "3.20.2",
|
|
"lint-staged": "10.1.2",
|
|
"mocha-junit-reporter": "1.23.3",
|
|
"picasso-plugin-q": "0.30.0",
|
|
"picasso.js": "0.30.0",
|
|
"prettier": "2.0.3",
|
|
"pretty-quick": "2.0.1",
|
|
"qix-faker": "0.3.0",
|
|
"rollup": "2.3.3",
|
|
"rollup-plugin-babel": "4.4.0",
|
|
"rollup-plugin-dependency-flow": "0.3.0",
|
|
"rollup-plugin-sass": "1.2.2",
|
|
"rollup-plugin-terser": "5.3.0",
|
|
"scriptappy-from-jsdoc": "0.7.0",
|
|
"yargs": "15.3.1"
|
|
},
|
|
"resolutions": {
|
|
"**/caniuse-lite": "1.0.30001039",
|
|
"**/react": "16.13.1",
|
|
"**/react-dom": "16.13.1",
|
|
"**/react-is": "16.13.1"
|
|
},
|
|
"workspaces": [
|
|
"generated/*",
|
|
"packages/*",
|
|
"commands/*",
|
|
"apis/*",
|
|
"test/component/*"
|
|
]
|
|
}
|