-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.94 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.94 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "forge-editor",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.731.0",
"@codemirror/autocomplete": "^6.18.4",
"@codemirror/collab": "^6.1.1",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/lang-wast": "^6.0.2",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/lint": "^6.8.4",
"@codemirror/view": "^6.36.2",
"@lezer/highlight": "^1.2.1",
"@lezer/javascript": "^1.4.21",
"@lezer/python": "^1.1.15",
"@open-rpc/client-js": "^1.8.1",
"@uiw/codemirror-theme-gruvbox-dark": "^4.23.7",
"@uiw/codemirror-theme-material": "^4.23.7",
"@uiw/codemirror-themes": "^4.23.7",
"@uiw/react-codemirror": "^4.23.7",
"@xterm/addon-attach": "^0.11.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"aws-sdk": "^2.1692.0",
"codemirror": "^6.0.1",
"codemirror-languageserver": "^1.11.0",
"diff": "^7.0.0",
"diff-match-patch": "^1.0.5",
"dockview": "^3.1.0",
"fb-watchman": "^2.0.2",
"flat-color-icons": "^1.1.0",
"ioredis": "^5.4.2",
"marked": "^15.0.6",
"marked-highlight": "^2.2.1",
"nanoid": "^5.0.9",
"next": "15.1.4",
"next-ws": "^1.1.1",
"node-pty": "^1.0.0",
"react": "^19.0.0",
"react-arborist": "^3.4.0",
"react-dom": "^19.0.0",
"react-grid-layout": "^1.5.0",
"react-icons": "^5.4.0",
"react-markdown": "^9.0.3",
"react-pre-hooks": "^3.1.6",
"react-resizable": "^3.0.5",
"react-tiny-popover": "^8.1.4",
"showdown": "^2.1.0",
"vscode-languageserver-protocol": "^3.17.5",
"ws": "^8.18.0",
"y-codemirror.next": "^0.3.5",
"yjs": "^13.6.23",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/diff": "^7.0.1",
"@types/diff-match-patch": "^1.0.36",
"@types/fb-watchman": "^2.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-grid-layout": "^1.3.5",
"@types/react-resizable": "^3.0.8",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"eslint": "^9",
"eslint-config-next": "15.1.4",
"glob": "^11.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"vscode-markdown-languageservice": "^0.5.0-alpha.8"
}
}