-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.77 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
{
"name": "crib-shortlist",
"version": "0.1.0",
"private": true,
"description": "A swipeable shortlist of live San Francisco apartment listings.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/context-dot-dev/crib-shortlist#readme",
"bugs": {
"url": "https://github.com/context-dot-dev/crib-shortlist/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/context-dot-dev/crib-shortlist.git"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "tsx --test tests/*.test.ts",
"check": "npm run lint && npm run typecheck && npm test",
"stress:search": "node scripts/stress-search.mjs",
"cache:warm": "node --env-file-if-exists=.env.local --import tsx scripts/warm-listings.ts",
"cache:watch": "node --env-file-if-exists=.env.local --import tsx scripts/warm-listings.ts --watch"
},
"keywords": [
"apartments",
"san-francisco",
"context-dev",
"nextjs"
],
"dependencies": {
"@libsql/client": "^0.17.4",
"@lisse/react": "^0.3.2",
"@phosphor-icons/react": "^2.1.10",
"@tailwindcss/postcss": "^4.3.0",
"clsx": "^2.1.1",
"motion": "^12.38.0",
"next": "^16.2.11",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "25.9.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.11",
"tailwindcss": "^4.3.0",
"tsx": "^4.23.1",
"typescript": "^6.0.3"
},
"overrides": {
"minimatch": "10.2.5",
"postcss": "8.5.23",
"sharp": "0.35.3"
}
}