tiptap/package.json

59 lines
2.2 KiB
JSON
Raw Normal View History

2019-12-08 04:02:22 +08:00
{
"private": true,
"workspaces": [
2020-04-17 18:51:49 +08:00
"docs",
2019-12-08 04:02:22 +08:00
"packages/*"
],
2020-08-21 05:25:55 +08:00
"browserslist": [
"> 1%",
"last 2 versions",
"not IE <= 11",
"not IE_Mob <= 11"
],
2019-12-08 04:02:22 +08:00
"scripts": {
2020-04-17 18:51:49 +08:00
"start": "yarn --cwd ./docs start",
2020-09-24 15:35:18 +08:00
"lint": "eslint --quiet --no-error-on-unmatched-pattern ./",
2020-11-18 18:08:49 +08:00
"lint:fix": "eslint --fix --quiet --no-error-on-unmatched-pattern ./",
"test:open": "cypress open --project tests",
2020-12-02 19:35:21 +08:00
"test": "cypress run --project tests --quiet --reporter list",
2020-11-18 18:23:33 +08:00
"build:docs": "yarn --cwd ./docs build",
2021-01-28 17:29:27 +08:00
"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 && for dir in packages/*; do package=${dir#'packages/'}; rollup -c --scope @tiptap/$package || exit 1; done",
2020-11-18 18:23:33 +08:00
"release": "yarn lint && yarn test && yarn build:packages && lerna publish",
"clean:packages": "rm -rf ./packages/*/dist",
2020-09-12 05:30:01 +08:00
"reset": "yarn clean:packages && rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./yarn.lock && yarn install"
2019-12-08 04:02:22 +08:00
},
2020-04-17 18:51:49 +08:00
"devDependencies": {
2020-11-10 16:21:47 +08:00
"@atomico/rollup-plugin-sizes": "^1.1.4",
2020-12-10 22:46:28 +08:00
"@babel/core": "^7.12.10",
2020-10-01 01:19:42 +08:00
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
2020-11-24 00:11:48 +08:00
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
2020-12-17 00:10:47 +08:00
"@babel/preset-env": "^7.12.11",
2020-11-07 06:55:30 +08:00
"@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",
2020-12-17 00:10:47 +08:00
"@rollup/plugin-node-resolve": "^11.0.1",
2021-01-28 15:39:27 +08:00
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
2021-01-21 16:45:28 +08:00
"cypress": "^6.3.0",
2020-12-07 22:46:37 +08:00
"eslint": "^7.15.0",
2020-09-24 05:31:06 +08:00
"eslint-config-airbnb-base": "^14.2.0",
2020-10-01 03:56:43 +08:00
"eslint-plugin-cypress": "^2.11.2",
2020-09-24 05:31:06 +08:00
"eslint-plugin-html": "^6.1.0",
2020-10-01 03:56:43 +08:00
"eslint-plugin-import": "^2.22.1",
2021-01-25 18:11:11 +08:00
"eslint-plugin-vue": "^7.5.0",
2020-07-15 17:44:25 +08:00
"lerna": "^3.22.1",
2020-11-07 06:55:30 +08:00
"minimist": "^1.2.5",
2021-01-25 18:11:11 +08:00
"rollup": "^2.38.0",
2020-11-12 04:05:49 +08:00
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
2020-11-07 06:55:30 +08:00
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
2020-11-10 19:43:09 +08:00
"rollup-plugin-vue": "5",
2020-12-17 00:10:47 +08:00
"typescript": "^4.1.3",
2020-08-21 05:25:55 +08:00
"vue": "^2.6.12"
2019-12-08 04:02:22 +08:00
}
}