-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.94 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
{
"name": "licenseed",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "panda codegen && bun run gen:schema",
"vite": "dotenvx run -- vite",
"dev": "bun run vite",
"prebuild": "bun run add:ts-nocheck",
"build": "tsc && bun run vite build",
"preview": "bun run vite preview",
"tauri": "tauri",
"fmt": "prettier --write ./src/",
"lint": "eslint --ext .ts,.tsx ./src",
"gen:schema": "bun run scripts/gen-schema-from-types.ts",
"add:ts-nocheck": "bun run scripts/add-ts-nocheck.ts"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.7.0",
"@generouted/react-router": "^1.19.3",
"@google/generative-ai": "^0.17.0",
"@headlessui/react": "^2.1.2",
"@iconify/react": "^4.1.1",
"@nanostores/persistent": "^0.10.1",
"@nanostores/react": "^0.7.2",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@tauri-apps/api": ">=2.0.0-rc.0",
"@tauri-apps/plugin-dialog": "^2.0.0-rc.0",
"@tauri-apps/plugin-shell": ">=2.0.0-rc.0",
"@uiw/react-md-editor": "^4.0.4",
"crypto-js": "^4.2.0",
"envsafe": "^2.0.3",
"lorem-ipsum": "^2.0.8",
"nanostores": "^0.10.3",
"natural-compare-lite": "^1.4.0",
"neverthrow": "^6.2.2",
"outmatch": "^1.0.0",
"react": "^18.2.0",
"react-arborist": "^3.4.0",
"react-dom": "^18.2.0",
"react-folder-tree": "^5.1.1",
"react-resplit": "^1.3.1",
"react-router-dom": "^6.23.0",
"rehype-sanitize": "^6.0.0",
"swr": "^2.2.5",
"ts-pattern": "^5.1.2",
"use-resize-observer": "^9.1.0",
"vite-plugin-static-copy": "^1.0.6",
"vscode-material-icons": "^0.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@csstools/postcss-cascade-layers": "^4.0.4",
"@pandacss/dev": "^0.40.1",
"@tauri-apps/cli": ">=2.0.0-rc.0",
"@types/bun": "^1.1.7",
"@types/crypto-js": "^4.2.2",
"@types/natural-compare-lite": "^1.4.2",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/ui": "^1.5.0",
"better-typescript-lib": "^2.8.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-unused-imports": "^3.1.0",
"prettier": "^3.2.5",
"ts-to-zod": "^3.11.0",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"vite-tsconfig-paths": "^4.3.2"
}
}