-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.71 KB
/
package.json
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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "flojoy-studio",
"version": "0.0.1",
"description": "The next-generation Flojoy Studio.",
"main": "./out/main/index.js",
"author": "Flojoy Inc.",
"homepage": "https://flojoy.ai",
"scripts": {
"format": "prettier --write .",
"check": "prettier --check .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev --inspect --watch",
"build": "pnpm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"electron-package:windows": "pnpm run build && electron-builder --win --config",
"electron-package:mac": "pnpm run build && electron-builder --mac --config",
"electron-package:linux": "pnpm run build && electron-builder --linux --config"
},
"dependencies": {
"@codemirror/lang-python": "^6.1.3",
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^2.0.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.12.2",
"@tanstack/react-query-devtools": "^5.13.3",
"@tisoap/react-flow-smart-edge": "^3.0.0",
"@trpc/client": "^10.44.1",
"@trpc/server": "^10.44.1",
"@uiw/react-codemirror": "^4.21.21",
"axios": "^1.6.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"electron-log": "^5.0.1",
"electron-trpc": "^0.5.2",
"electron-updater": "^6.1.7",
"fix-path": "^3.0.0",
"gamepad.js": "^2.1.0",
"immer": "^10.0.3",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"lucide-react": "^0.294.0",
"match-sorter": "^6.3.1",
"react-router-dom": "^6.20.1",
"react-use-websocket": "^4.5.0",
"reactflow": "^11.10.1",
"sonner": "^1.2.4",
"sort-by": "^1.2.0",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7",
"use-broadcast-ts": "^1.4.0",
"uuid": "^9.0.1",
"ws": "^8.14.2",
"zod": "^3.22.4",
"zustand": "^4.4.7"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^1.0.1",
"@electron-toolkit/eslint-config-ts": "^1.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.4",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"electron": "^27.1.3",
"electron-builder": "^24.9.1",
"electron-devtools-installer": "^3.2.0",
"electron-vite": "^1.0.29",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3",
"vite": "^4.5.1"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"fix-path"
]
}
}
}