mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-11-27 14:59:27 +08:00
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"docs",
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"start": "yarn --cwd ./docs start",
|
|
"build:docs": "yarn --cwd ./docs build",
|
|
"build:packages": "yarn clean:packages && lerna exec --parallel -- microbundle --raw --compress",
|
|
"clean:packages": "rm -rf ./packages/*/dist",
|
|
"test:debug": "cypress open --project tests",
|
|
"test": "cypress run --project tests",
|
|
"reset": "rm -rf ./**/.cache && rm -rf ./**/node_modules && rm -rf ./yarn.lock && yarn install",
|
|
"startandtest": "start-server-and-test start http://localhost:3000 test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/prosemirror-commands": "^1.0.3",
|
|
"@types/prosemirror-history": "^1.0.1",
|
|
"@types/prosemirror-inputrules": "^1.0.2",
|
|
"@types/prosemirror-keymap": "^1.0.3",
|
|
"@types/prosemirror-model": "^1.7.2",
|
|
"@types/prosemirror-state": "^1.2.5",
|
|
"@types/prosemirror-transform": "^1.1.1",
|
|
"@types/prosemirror-view": "^1.15.0",
|
|
"cypress": "^4.12.1",
|
|
"lerna": "^3.22.1",
|
|
"microbundle": "^0.12.3",
|
|
"sass-loader": "^9.0.3",
|
|
"start-server-and-test": "^1.11.3",
|
|
"typescript": "^3.9.7"
|
|
}
|
|
}
|