forked from ZSKAI-OS/CodeSandBox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 842 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 842 Bytes
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
{
"name": "mobile-sandbox-ide",
"private": true,
"version": "0.1.0",
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"workspaces": [
"apps/*"
],
"scripts": {
"dev:ide": "npm --workspace apps/ide run dev",
"dev:docs": "npm --workspace apps/docs run dev",
"build": "npm --workspaces run build",
"typecheck": "npm --workspaces run typecheck",
"lint": "npm --workspaces run lint",
"test": "npm --workspaces run test"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@vitejs/plugin-react": "latest",
"eslint": "10.8.0",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.8.0",
"typescript": "latest",
"typescript-eslint": "8.65.0",
"vite": "latest",
"vitest": "latest"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0"
}
}