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",
|
|
|
|
"build:docs": "yarn --cwd ./docs build",
|
2020-08-21 05:25:55 +08:00
|
|
|
"build:packages": "yarn clean:packages && lerna exec --parallel -- microbundle --compress",
|
2019-12-17 06:30:41 +08:00
|
|
|
"clean:packages": "rm -rf ./packages/*/dist",
|
2020-09-24 15:35:18 +08:00
|
|
|
"lint": "eslint --quiet --no-error-on-unmatched-pattern ./",
|
2020-09-09 18:44:59 +08:00
|
|
|
"test:open": "cypress open --project tests",
|
|
|
|
"test": "cypress run --project tests",
|
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-10-01 01:19:42 +08:00
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
|
2020-09-23 03:54:44 +08:00
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
|
2020-09-04 20:24:27 +08:00
|
|
|
"@babel/preset-env": "^7.11.5",
|
2020-07-15 17:44:25 +08:00
|
|
|
"@types/prosemirror-commands": "^1.0.3",
|
2019-12-08 07:16:44 +08:00
|
|
|
"@types/prosemirror-history": "^1.0.1",
|
2020-09-04 20:24:27 +08:00
|
|
|
"@types/prosemirror-inputrules": "^1.0.3",
|
2020-07-15 17:44:25 +08:00
|
|
|
"@types/prosemirror-keymap": "^1.0.3",
|
2019-12-08 07:16:44 +08:00
|
|
|
"@types/prosemirror-model": "^1.7.2",
|
2020-07-15 17:44:25 +08:00
|
|
|
"@types/prosemirror-state": "^1.2.5",
|
2019-12-08 07:16:44 +08:00
|
|
|
"@types/prosemirror-transform": "^1.1.1",
|
2020-07-15 17:44:25 +08:00
|
|
|
"@types/prosemirror-view": "^1.15.0",
|
2020-09-24 06:06:12 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.2.0",
|
2020-09-24 05:31:06 +08:00
|
|
|
"@typescript-eslint/parser": "^4.2.0",
|
2020-09-22 05:48:55 +08:00
|
|
|
"cypress": "^5.2.0",
|
2020-09-24 05:31:06 +08:00
|
|
|
"eslint": "^7.9.0",
|
|
|
|
"eslint-config-airbnb-base": "^14.2.0",
|
|
|
|
"eslint-plugin-cypress": "^2.11.1",
|
|
|
|
"eslint-plugin-html": "^6.1.0",
|
|
|
|
"eslint-plugin-import": "^2.22.0",
|
|
|
|
"eslint-plugin-vue": "^6.2.2",
|
2020-07-15 17:44:25 +08:00
|
|
|
"lerna": "^3.22.1",
|
|
|
|
"microbundle": "^0.12.3",
|
2020-08-12 04:42:09 +08:00
|
|
|
"sass-loader": "^9.0.3",
|
2020-08-18 01:08:32 +08:00
|
|
|
"typedoc": "^0.18.0",
|
2020-09-22 05:48:55 +08:00
|
|
|
"typescript": "^4.0.3",
|
2020-08-21 05:25:55 +08:00
|
|
|
"vue": "^2.6.12"
|
2019-12-08 04:02:22 +08:00
|
|
|
}
|
|
|
|
}
|