-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 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
{
"name": "bullet-ai",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@11.9.0",
"engines": {
"node": "24.15.x",
"pnpm": "11.9.x"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"migration:check": "node scripts/verify-migrations.mjs",
"storage:audit": "node scripts/audit-storage.mjs",
"test": "vitest run",
"test:db": "bash scripts/test-db.sh"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.56.0",
"@tanstack/react-query": "^5.101.2",
"idb": "^8.0.3",
"lucide-react": "^0.544.0",
"next": "15.5.18",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.18",
"fake-indexeddb": "^6.2.5",
"jsdom": "^29.1.1",
"prettier": "^3.9.4",
"supabase": "2.101.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.9"
}
}