Files
nebula.js/package.json
renovate[bot] a9e6b4f40e chore(deps): update dependency lint-staged to v16 (#1742)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-05-12 12:19:50 +02:00

113 lines
4.2 KiB
JSON

{
"private": true,
"description": "",
"type": "module",
"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.cjs",
"locale:generate": "node apis/locale/scripts/generate-all.mjs",
"lint": "eslint packages apis commands --ext .js,.jsx",
"lint:check": "eslint --print-config ./aw.config.cjs | 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.cjs --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.cjs --testExt '*.int.*js' --glob 'test/integration/**/*.int.*js'",
"test:component": "aw puppet -c aw.config.cjs --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.27.2",
"@babel/core": "7.27.1",
"@babel/helper-plugin-utils": "7.27.1",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-react-jsx": "7.27.1",
"@babel/preset-env": "7.27.2",
"@babel/preset-react": "7.27.1",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@playwright/test": "1.52.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.3",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-replace": "6.0.2",
"@rollup/plugin-terser": "0.4.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.6.1",
"babel-loader": "10.0.0",
"babel-plugin-istanbul": "7.0.0",
"body-parser": "2.2.0",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"enigma.js": "2.14.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-prettier": "5.4.0",
"eslint-plugin-react": "7.37.5",
"express": "5.1.0",
"husky": "9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-location-mock": "^2.0.0",
"lerna": "8.2.2",
"lint-staged": "^16.0.0",
"mocha-junit-reporter": "2.2.1",
"picasso-plugin-q": "2.8.2",
"picasso.js": "2.8.2",
"prettier": "3.5.3",
"puppeteer": "24.8.2",
"qix-faker": "0.3.0",
"rollup": "4.40.2",
"rollup-plugin-dependency-flow": "0.3.0",
"rollup-plugin-sass": "1.15.2",
"style-loader": "4.0.0",
"whatwg-fetch": "^3.6.20",
"yargs": "17.7.2"
},
"resolutions": {
"**/caniuse-lite": "1.0.30001717",
"**/react": "18.3.1",
"**/react-dom": "18.3.1",
"**/react-is": "18.3.1",
"@playwright/test": "1.52.0"
},
"workspaces": [
"generated/*",
"packages/*",
"commands/*",
"apis/*",
"test/component/*"
],
"packageManager": "yarn@1.22.22"
}