{ "private": true, "workspaces": [ "docs", "packages/*" ], "browserslist": [ "> 1%", "last 2 versions", "not IE <= 11", "not IE_Mob <= 11" ], "scripts": { "start": "yarn --cwd ./docs 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 --quiet --reporter list", "build:docs": "yarn --cwd ./docs build", "build:ci": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --ci --scope @tiptap/$package; done", "build:packages": "yarn clean:packages && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --scope @tiptap/$package; done", "release": "yarn lint && yarn test && 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.12.10", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4", "@babel/plugin-proposal-optional-chaining": "^7.12.7", "@babel/preset-env": "^7.12.11", "@lerna/batch-packages": "^3.16.0", "@lerna/filter-packages": "^3.18.0", "@lerna/project": "^3.21.0", "@rollup/plugin-babel": "^5.2.1", "@rollup/plugin-commonjs": "^17.0.0", "@rollup/plugin-node-resolve": "^11.0.1", "@typescript-eslint/eslint-plugin": "^4.14.0", "@typescript-eslint/parser": "^4.14.0", "cypress": "^6.3.0", "eslint": "^7.15.0", "eslint-config-airbnb-base": "^14.2.0", "eslint-plugin-cypress": "^2.11.2", "eslint-plugin-html": "^6.1.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-vue": "^7.4.1", "lerna": "^3.22.1", "minimist": "^1.2.5", "rollup": "^2.37.1", "rollup-plugin-auto-external": "^2.0.0", "rollup-plugin-sourcemaps": "^0.6.3", "rollup-plugin-terser": "^7.0.2", "rollup-plugin-typescript2": "^0.29.0", "rollup-plugin-vue": "5", "typedoc": "^0.20.16", "typescript": "^4.1.3", "vue": "^2.6.12" } }