-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.74 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
{
"name": "editor",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build && pnpm run copy-editor-dist",
"copy-editor-dist": "node ./scripts/copy-editor-dist.mjs",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@powersync/cli-core": "workspace:*",
"@powersync/cli-schemas": "workspace:*",
"@radix-ui/react-accordion": "^1.2.12",
"@tailwindcss/vite": "^4.2.4",
"@tanstack/react-devtools": "^0.7.11",
"@tanstack/react-query": "^5.100.6",
"@tanstack/react-router": "^1.169.1",
"@tanstack/react-router-devtools": "^1.166.13",
"@tanstack/react-router-ssr-query": "^1.166.12",
"@tanstack/react-start": "^1.167.62",
"@tanstack/router-plugin": "^1.167.32",
"buffer": "^6.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.561.0",
"minimatch": "^5.1.9",
"monaco-editor": "0.52.0",
"monaco-yaml": "^5.4.1",
"nitro": "3.0.260429-beta",
"path-browserify": "^1.0.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"rxjs": "^7.8.2",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.1"
},
"devDependencies": {
"@tanstack/devtools-vite": "^0.3.12",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.19.17",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"jsdom": "^27.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}