-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.05 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
{
"name": "keeparr",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "docker compose -f compose.dev.yml up -d && NODE_OPTIONS='--inspect' next dev",
"turbo": "NODE_OPTIONS=--inspect next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:e2e": "playwright test --ui",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"prepare": "husky",
"db:gen": "drizzle-kit generate",
"db:mig": "drizzle-kit migrate",
"db:stu": "drizzle-kit studio"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.682.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.1.3",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-query": "^5.37.1",
"@tanstack/react-query-devtools": "^5.37.1",
"@types/lodash-es": "^4.17.12",
"@types/uuid": "^9.0.8",
"ai": "^3.4.23",
"arctic": "^2.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "1.0.0",
"drizzle-orm": "^0.35.3",
"framer-motion": "^11.2.4",
"highlight.js": "^11.10.0",
"idb": "^8.0.0",
"is-hotkey": "^0.2.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.454.0",
"next": "latest",
"next-themes": "^0.3.0",
"novel": "^0.5.0",
"postgres": "^3.4.4",
"react": "latest",
"react-dom": "latest",
"sonner": "^1.5.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"tiptap-extension-auto-joiner": "^0.1.3",
"tiptap-extension-global-drag-handle": "^0.1.14",
"use-debounce": "^10.0.4",
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@iconify/react": "^4.1.1",
"@playwright/test": "^1.42.1",
"@testing-library/react": "^14.2.1",
"@types/is-hotkey": "^0.1.10",
"@types/node": "^20",
"@types/react": "^18.2.52",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10",
"drizzle-kit": "^0.26.2",
"eslint": "^8",
"eslint-config-next": "latest",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"postcss": "^8",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.12",
"pretty-quick": "^4.0.0",
"tailwindcss": "^3",
"typescript": "^5",
"vitest": "^1.3.1"
}
}