This repository has been archived by the owner on Apr 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.37 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
{
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --parallel --continue",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean",
"postinstall": "patch-package --error-on-fail false",
"changeset": "changeset",
"release": "turbo run build && changeset publish",
"start:server": "cd apps/server && npm run start",
"start:hocuspocus": "cd apps/hocuspocus && npm run start"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/color-hash": "^1.0.2",
"@types/deep-equal": "^1.0.1",
"@types/graphql-list-fields": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.23.0",
"eslint-plugin-turbo": "^0.0.3",
"mongodb-memory-server": "^8.10.2",
"nodemon": "^2.0.20",
"prettier": "^2.5.1",
"turbo": "latest",
"typescript": "^5.0.2"
},
"dependencies": {
"@changesets/cli": "^2.24.4",
"@hocuspocus/extension-database": "^1.0.0-alpha.20",
"@hocuspocus/server": "^1.0.0-alpha.106",
"@tiptap/core": "^2.0.0-beta.199",
"@tiptap/extension-bold": "^2.0.0-beta.199",
"@tiptap/extension-collaboration": "^2.0.0-beta.199",
"@tiptap/extension-document": "^2.0.0-beta.199",
"@tiptap/extension-font-family": "^2.0.0-beta.199",
"@tiptap/extension-link": "^2.0.0-beta.199",
"@tiptap/extension-paragraph": "^2.0.0-beta.199",
"@tiptap/extension-table": "^2.0.0-beta.199",
"@tiptap/extension-table-cell": "^2.0.0-beta.199",
"@tiptap/extension-table-header": "^2.0.0-beta.199",
"@tiptap/extension-table-row": "^2.0.0-beta.199",
"@tiptap/extension-text": "^2.0.0-beta.199",
"@tiptap/extension-text-style": "^2.0.0-beta.199",
"@tiptap/extension-underline": "^2.0.0-beta.199",
"@tiptap/starter-kit": "^2.0.0-beta.199",
"color-hash": "^2.0.1",
"copy-anything": "^3.0.3",
"crypto": "^1.0.1",
"deep-equal": "^2.2.2",
"deep-object-diff": "^1.1.9",
"flatten-anything": "^3.0.5",
"graphql-list-fields": "^2.0.2",
"is-what": "^4.1.7",
"mongoose": "^7.0.2",
"octokit": "^2.0.14",
"ws": "^8.8.1",
"y-websocket": "^1.4.5"
}
}