-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.52 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.52 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "vault",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "node ./server.js",
"start": "NODE_ENV=production node ./server.js",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"tauri": "tauri",
"prepare": "panda codegen"
},
"dependencies": {
"@ark-ui/react": "^1.2.1",
"@codemirror/autocomplete": "^6.11.1",
"@codemirror/commands": "^6.3.3",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.0",
"@nextui-org/react": "^2.2.9",
"@prosemirror-adapter/react": "^0.2.6",
"@radix-ui/colors": "^3.0.0",
"@tailwindcss/typography": "^0.5.10",
"@vlcn.io/crsqlite-wasm": "0.16.0",
"@vlcn.io/react": "3.1.0",
"@vlcn.io/ws-browserdb": "0.2.0",
"@vlcn.io/ws-client": "0.2.0",
"@vlcn.io/ws-server": "0.2.2",
"autoprefixer": "^10.4.16",
"better-sqlite3": "^9.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"codemirror": "^6.0.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"framer-motion": "^10.18.0",
"kysely": "^0.27.1",
"kysely-plugin-serialize": "^0.5.6",
"lodash": "^4.17.21",
"lucide-react": "^0.304.0",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"postcss": "^8.4.32",
"prosemirror-commands": "^1.5.2",
"prosemirror-history": "^1.3.2",
"prosemirror-inputrules": "^1.3.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-model": "^1.19.4",
"prosemirror-state": "^1.4.3",
"prosemirror-transform": "^1.8.0",
"prosemirror-view": "^1.32.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0",
"tailwind-variants": "^0.2.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"use-immer": "^0.9.0",
"vite-express": "^0.9.2"
},
"devDependencies": {
"@pandacss/dev": "^0.32.0",
"@park-ui/panda-preset": "^0.35.2",
"@tauri-apps/cli": "^1.5.10",
"@types/lodash": "^4.14.202",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"sass": "^1.71.1",
"typescript": "^5.0.2",
"vite": "^4.3.9",
"vite-plugin-pwa": "^0.16.4",
"vite-tsconfig-paths": "^4.2.3"
}
}