-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.81 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
{
"name": "linearlite",
"version": "0.0.1",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "node ./server.js",
"start": "NODE_ENV=production node ./server.js",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"typecheck": "tsc --noEmit --skipLibCheck",
"sql-watch": "typed-sql -p . --sql --schemaTyping=parallel"
},
"dependencies": {
"@effect/schema": "0.48.0",
"@firefox-devtools/react-contextmenu": "^5.1.1",
"@headlessui/react": "^1.7.17",
"@tailwindcss/forms": "^0.5.6",
"@tiptap/extension-placeholder": "^2.1.8",
"@tiptap/extension-table": "^2.1.8",
"@tiptap/extension-table-cell": "^2.1.8",
"@tiptap/extension-table-header": "^2.1.8",
"@tiptap/extension-table-row": "^2.1.8",
"@tiptap/pm": "^2.1.8",
"@tiptap/react": "^2.1.8",
"@tiptap/starter-kit": "^2.1.8",
"@vlcn.io/crsqlite-wasm": "0.16.0",
"@vlcn.io/id": "0.1.0",
"@vlcn.io/react": "3.1.0",
"@vlcn.io/typed-sql": "0.3.0",
"@vlcn.io/ws-browserdb": "0.2.0",
"@vlcn.io/ws-client": "0.2.0",
"@vlcn.io/ws-server": "0.2.2",
"@vlcn.io/xplat-api": "0.15.0",
"animate.css": "^4.1.1",
"better-sqlite3": "^9.1.1",
"classnames": "^2.3.2",
"dayjs": "^1.11.9",
"express": "^4.18.2",
"fractional-indexing": "^3.2.0",
"jsonwebtoken": "^9.0.2",
"lodash.debounce": "^4.0.8",
"nanoid": "^5.0.3",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.15.0",
"react-toastify": "^9.1.3",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"tiptap-markdown": "^0.8.2",
"uuid": "^9.0.0",
"vite-express": "^0.11.1"
},
"devDependencies": {
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@tailwindcss/typography": "^0.5.10",
"@types/jest": "^29.5.4",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^20.5.9",
"@types/react": "^18.2.15",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.2.7",
"@types/react-router-dom": "^5.3.3",
"@types/react-window": "^1.8.5",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"@vlcn.io/typed-sql-cli": "0.3.0-next.2",
"autoprefixer": "^10.4.15",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"fs-extra": "^10.0.0",
"postcss": "^8.4.29",
"prettier-plugin-packagejson": "^2.4.6",
"prompt": "^1.3.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-svgr": "^3.2.0"
}
}