forked from UsefulSoftwareCo/executor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "@executor-js/app",
"version": "1.4.4",
"private": true,
"type": "module",
"exports": {
".": "./src/entry-client.tsx",
"./vite": "./vite.ts",
"./router": "./src/router.tsx",
"./routeTree": "./src/routeTree.gen.ts",
"./index.html": "./index.html"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsgo --noEmit",
"typecheck:slow": "tsc --noEmit",
"routes:gen": "bun scripts/gen-routes.ts"
},
"dependencies": {
"@effect/atom-react": "catalog:",
"@executor-js/react": "workspace:*",
"@executor-js/sdk": "workspace:*",
"@executor-js/vite-plugin": "workspace:*",
"@sentry/browser": "^10.57.0",
"@tanstack/react-router": "catalog:",
"effect": "catalog:",
"lucide-react": "^1.7.0",
"react": "catalog:",
"react-dom": "catalog:"
},
"devDependencies": {
"@tailwindcss/vite": "catalog:",
"@tanstack/router-plugin": "^1.167.12",
"@tanstack/virtual-file-routes": "^1.162.0",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react": "catalog:",
"react-grab": "^0.1.31",
"typescript": "catalog:",
"vite": "catalog:"
}
}