This repository was archived by the owner on Dec 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "pulse_editor_code_view",
"displayName": "Pulse Code Editor",
"description": "A code editor based on CodeMirror 6 for Pulse Editor.",
"version": "0.0.24",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint .",
"dev": "pulse dev",
"build": "pulse build",
"build-client": "pulse build --target client",
"build-server": "pulse build --target server",
"start": "pulse start",
"preview": "pulse preview",
"clean": "pulse clean"
},
"dependencies": {
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/lang-python": "^6.2.1",
"@pulse-editor/react-api": "^0.1.1-beta.60",
"@pulse-editor/shared-utils": "^0.1.1-beta.60",
"@uiw/codemirror-theme-vscode": "^4.23.12",
"@uiw/react-codemirror": "^4.23.12",
"cors": "^2.8.5",
"diff": "^8.0.1",
"dotenv": "^17.2.3",
"html-webpack-plugin": "^5.6.4",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"devDependencies": {
"@module-federation/enhanced": "^0.21.6",
"@module-federation/node": "^2.7.25",
"@module-federation/runtime": "^0.21.6",
"@pulse-editor/cli": "^0.1.1-beta.7",
"@tailwindcss/postcss": "^4.1.14",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.2",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.5",
"mini-css-extract-plugin": "^2.9.4",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"tailwindcss": "^4.1.14",
"ts-loader": "^9.5.4",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}