Files
nebula.js/package.json
renovate[bot] 322523b8ab chore(deps): update minor and patch (#1370)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-10-09 00:20:04 +00:00

111 lines
4.1 KiB
JSON

{
"private": true,
"description": "",
"scripts": {
"build": "yarn run locale:generate && cross-env NODE_ENV=production FORCE_COLOR=1 lerna run build --stream",
"build:dev": "yarn run locale:generate && cross-env NODE_ENV=development 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,enigma-mocker}\"",
"install:codesandbox": "yarn --ignore-engines",
"build:watch": "FORCE_COLOR=1 lerna run build:watch --stream --concurrency 99 --no-sort",
"format": "prettier --write '**/**/*' --ignore-unknown",
"locale:verify": "node tools/verify-translations.js",
"locale:generate": "node apis/locale/scripts/generate-all.mjs",
"lint": "eslint packages apis commands --ext .js,.jsx",
"lint:check": "eslint --print-config ./aw.config.js | eslint-config-prettier-check",
"spec": "lerna run spec --stream --concurrency 99 && lerna run ts --stream --concurrency 99 ",
"mashup": "node scripts/start-mashup.js",
"test": "yarn run test:unit",
"test:unit": "jest --maxWorkers=2",
"test:update": "jest --maxWorkers=2 -u",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:mashup": "aw puppet -c aw.config.js --testExt '*.int.js' --glob 'test/mashup/**/*.int.js'",
"test:rendering": "playwright test --config=./test/rendering/playwright.config.rendering.js --quiet",
"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'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/qlik-oss/nebula.js.git"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint",
"prettier"
]
},
"devDependencies": {
"@after-work.js/aw": "6.0.14",
"@babel/cli": "7.23.0",
"@babel/core": "7.23.0",
"@babel/helper-plugin-utils": "7.22.5",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-react-jsx": "7.22.15",
"@babel/preset-env": "7.22.20",
"@babel/preset-react": "7.22.15",
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@playwright/test": "1.38.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "25.0.5",
"@rollup/plugin-json": "6.0.1",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.3",
"@rollup/plugin-terser": "0.4.4",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"babel-loader": "9.1.3",
"babel-plugin-istanbul": "6.1.1",
"body-parser": "1.20.2",
"cross-env": "7.0.3",
"css-loader": "6.8.1",
"enigma.js": "2.12.0",
"eslint": "8.51.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-mocha": "10.2.0",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.2",
"express": "4.18.2",
"husky": "8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-location-mock": "^2.0.0",
"jimp": "0.22.10",
"lerna": "7.3.0",
"lint-staged": "^14.0.1",
"mocha-junit-reporter": "2.2.1",
"picasso-plugin-q": "2.2.5",
"picasso.js": "2.2.5",
"prettier": "3.0.3",
"puppeteer": "19.11.1",
"qix-faker": "0.3.0",
"rollup": "3.29.4",
"rollup-plugin-dependency-flow": "0.3.0",
"rollup-plugin-sass": "1.12.21",
"style-loader": "3.3.3",
"whatwg-fetch": "^3.6.19",
"yargs": "17.7.2"
},
"resolutions": {
"**/caniuse-lite": "1.0.30001546",
"**/react": "18.2.0",
"**/react-dom": "18.2.0",
"**/react-is": "18.2.0",
"@playwright/test": "1.38.1"
},
"workspaces": [
"generated/*",
"packages/*",
"commands/*",
"apis/*",
"test/component/*"
]
}