{ "private": true, "workspaces": [ "demos", "packages/*" ], "browserslist": [ "defaults", "not IE 11" ], "scripts": { "start": "yarn --cwd ./demos start", "lint": "eslint --quiet --no-error-on-unmatched-pattern ./", "lint:fix": "eslint --fix --quiet --no-error-on-unmatched-pattern ./", "test:open": "cypress open --project tests", "test": "cypress run --project tests", "build:demos": "yarn --cwd ./demos build", "build:ci": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --ci --scope @tiptap/$package || exit 1; done", "build:packages": "yarn clean:packages && lerna changed | while read package; do rollup -c --scope $package || exit 1; done", "build:allpackages": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --scope @tiptap/$package || exit 1; done", "release": "yarn build:packages && lerna publish", "clean:packages": "rm -rf ./packages/*/dist", "reset": "yarn clean:packages && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./yarn.lock && yarn install" }, "devDependencies": { "@atomico/rollup-plugin-sizes": "^1.1.4", "@babel/core": "^7.17.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7", "@babel/plugin-proposal-optional-chaining": "^7.16.7", "@babel/preset-env": "^7.16.11", "@babel/preset-react": "^7.16.7", "@cypress/webpack-preprocessor": "^5.11.0", "@lerna/batch-packages": "^3.16.0", "@lerna/filter-packages": "^4.0.0", "@lerna/project": "^4.0.0", "@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-commonjs": "^21.0.1", "@rollup/plugin-node-resolve": "^13.1.3", "@typescript-eslint/eslint-plugin": "^5.10.2", "@typescript-eslint/parser": "^5.10.2", "babel-loader": "^8.2.3", "cypress": "^9.4.1", "eslint": "^8.8.0", "eslint-config-airbnb-base": "^14.2.0", "eslint-plugin-cypress": "^2.12.1", "eslint-plugin-html": "^6.2.0", "eslint-plugin-import": "^2.25.4", "eslint-plugin-vue": "^8.4.0", "lerna": "^4.0.0", "minimist": "^1.2.5", "rollup": "^2.67.0", "rollup-plugin-auto-external": "^2.0.0", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-typescript2": "^0.31.2", "ts-loader": "^9.2.6", "typescript": "^4.5.5", "webpack": "^5.68.0" } }