-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
58 lines (58 loc) · 2.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@aeaton/react-prosemirror-modules",
"private": true,
"workspaces": [
"packages/*",
"demo"
],
"author": "Alf Eaton <[email protected]>",
"license": "MIT",
"repository": "hubgit/react-prosemirror",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "tsc --build packages",
"build:clean": "tsc --build --clean packages",
"build:watch": "tsc --build --watch packages",
"lint": "eslint packages --ext ts,tsx --cache --cache-file .cache/eslint-packages",
"lint:demo": "eslint demo --ext ts,tsx --cache --cache-file .cache/eslint-demo",
"release": "yarn build && lerna publish",
"demo:build:development": "yarn workspace demo build:development",
"demo:serve": "yarn workspace demo serve"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/prosemirror-commands": "^1.0.3",
"@types/prosemirror-dropcursor": "^1.0.1",
"@types/prosemirror-gapcursor": "^1.0.3",
"@types/prosemirror-history": "^1.0.2",
"@types/prosemirror-inputrules": "^1.0.2",
"@types/prosemirror-keymap": "^1.0.3",
"@types/prosemirror-model": "^1.13.0",
"@types/prosemirror-schema-list": "^1.0.3",
"@types/prosemirror-state": "^1.2.5",
"@types/prosemirror-tables": "^0.9.1",
"@types/prosemirror-transform": "^1.1.2",
"@types/prosemirror-view": "^1.15.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"prosemirror-commands": "^1.1.7",
"prosemirror-model": "^1.13.3",
"prosemirror-state": "^1.3.4",
"prosemirror-transform": "^1.2.12",
"prosemirror-view": "^1.18.2",
"react": "^17.0.2",
"typescript": "^4.2.3"
}
}