-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.93 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "tiptap-types-issue",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"build": "babel src --out-dir dist --copy-files --extensions '.ts,.js,.jsx,.tsx'",
"types": "tsc",
"bundle": "rollup --config ./bundler/config.js",
"start": "node dist/server/index.js"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@types/express": "^4.17.17",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"babel-plugin-styled-components": "^2.0.7",
"rollup": "^3.20.2",
"typescript": "^5.0.2"
},
"dependencies": {
"@tiptap/core": "2.0.0-beta.220",
"@tiptap/extension-bubble-menu": "2.0.0-beta.220",
"@tiptap/extension-character-count": "2.0.0-beta.220",
"@tiptap/extension-code": "2.0.0-beta.220",
"@tiptap/extension-document": "2.0.0-beta.220",
"@tiptap/extension-floating-menu": "2.0.0-beta.220",
"@tiptap/extension-heading": "2.0.0-beta.220",
"@tiptap/extension-image": "2.0.0-beta.220",
"@tiptap/extension-link": "2.0.0-beta.220",
"@tiptap/extension-table": "2.0.0-beta.220",
"@tiptap/extension-table-cell": "2.0.0-beta.220",
"@tiptap/extension-table-header": "2.0.0-beta.220",
"@tiptap/extension-table-row": "2.0.0-beta.220",
"@tiptap/extension-text": "2.0.0-beta.220",
"@tiptap/extension-text-align": "2.0.0-beta.220",
"@tiptap/extension-typography": "2.0.0-beta.220",
"@tiptap/pm": "2.0.0-beta.220",
"@tiptap/react": "2.0.0-beta.220",
"@tiptap/starter-kit": "2.0.0-beta.220",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "6.0.0-beta.11"
},
"resolutions": {
"@tiptap/core": "2.0.0-beta.220",
"@tiptap/extension-bubble-menu": "2.0.0-beta.220",
"@tiptap/extension-character-count": "2.0.0-beta.220",
"@tiptap/extension-code": "2.0.0-beta.220",
"@tiptap/extension-document": "2.0.0-beta.220",
"@tiptap/extension-floating-menu": "2.0.0-beta.220",
"@tiptap/extension-heading": "2.0.0-beta.220",
"@tiptap/extension-image": "2.0.0-beta.220",
"@tiptap/extension-link": "2.0.0-beta.220",
"@tiptap/extension-table": "2.0.0-beta.220",
"@tiptap/extension-table-cell": "2.0.0-beta.220",
"@tiptap/extension-table-header": "2.0.0-beta.220",
"@tiptap/extension-table-row": "2.0.0-beta.220",
"@tiptap/extension-text": "2.0.0-beta.220",
"@tiptap/extension-text-align": "2.0.0-beta.220",
"@tiptap/extension-typography": "2.0.0-beta.220",
"@tiptap/pm": "2.0.0-beta.220",
"@tiptap/react": "2.0.0-beta.220",
"@tiptap/starter-kit": "2.0.0-beta.220",
"styled-components": "6.0.0-beta.11"
}
}