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/*"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2020-04-17 18:51:49 +08:00
|
|
|
"start": "yarn --cwd ./docs start",
|
|
|
|
"build:docs": "yarn --cwd ./docs build",
|
2019-12-08 04:02:22 +08:00
|
|
|
"build:packages": "yarn clean:packages && lerna exec --parallel -- microbundle --raw --compress",
|
2019-12-17 06:30:41 +08:00
|
|
|
"clean:packages": "rm -rf ./packages/*/dist",
|
2020-04-17 19:05:43 +08:00
|
|
|
"test:debug": "cypress open --project tests",
|
|
|
|
"test": "cypress run --project tests",
|
2020-04-20 19:40:04 +08:00
|
|
|
"reset": "rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./yarn.lock && yarn install",
|
2020-03-04 06:45:20 +08:00
|
|
|
"startandtest": "start-server-and-test start http://localhost:3000 test"
|
2019-12-08 04:02:22 +08:00
|
|
|
},
|
2020-04-17 18:51:49 +08:00
|
|
|
"devDependencies": {
|
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",
|
|
|
|
"@types/prosemirror-inputrules": "^1.0.2",
|
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-08-12 04:42:09 +08:00
|
|
|
"cypress": "^4.12.1",
|
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",
|
|
|
|
"start-server-and-test": "^1.11.3",
|
2020-08-18 01:08:32 +08:00
|
|
|
"typedoc": "^0.18.0",
|
2020-08-12 04:42:09 +08:00
|
|
|
"typescript": "^3.9.7"
|
2019-12-08 04:02:22 +08:00
|
|
|
}
|
|
|
|
}
|