-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.84 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "atlas",
"version": "1.4.2",
"private": true,
"description": "Self-hosted personal travel companion — trips, flights, hotels, activities, documents, maps.",
"license": "SEE LICENSE IN LICENSE",
"author": "Sebastian Theimer",
"repository": {
"type": "git",
"url": "https://github.com/SebboGit/atlas"
},
"bugs": {
"url": "https://github.com/SebboGit/atlas/issues"
},
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@9.15.4",
"scripts": {
"dev": "next dev",
"dev:up": "docker compose up -d --wait postgres && pnpm db:setup && next dev",
"dev:up:wt": "docker compose up -d --wait postgres && pnpm db:setup && pnpm seed:dev && next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx --env-file-if-exists=.env src/db/migrate.ts",
"db:setup": "pnpm db:migrate && pnpm db:seed",
"db:reset": "docker compose down -v postgres && docker compose up -d --wait postgres && pnpm db:setup",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx --env-file-if-exists=.env scripts/seed.ts",
"seed:dev": "tsx --env-file-if-exists=.env scripts/seed-dev-fixture.ts",
"db:prune": "tsx --env-file-if-exists=.env scripts/prune.ts",
"worker": "tsx --env-file-if-exists=.env scripts/worker.ts",
"docs:cleanup-orphans": "tsx --env-file-if-exists=.env scripts/cleanup-orphaned-documents.ts",
"tiles:fetch": "./scripts/fetch-tiles.sh",
"prepare": "husky || true"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.2",
"@hookform/resolvers": "^5.4.0",
"@protomaps/basemaps": "^5.7.2",
"@radix-ui/react-dialog": "^1.1.17",
"@radix-ui/react-dropdown-menu": "^2.1.18",
"@radix-ui/react-label": "^2.1.10",
"@radix-ui/react-popover": "^1.1.17",
"@radix-ui/react-slot": "^1.3.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-query-devtools": "^5.101.2",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"drizzle-orm": "^0.45.2",
"file-type": "^22.0.1",
"lucide-react": "^1.22.0",
"maplibre-gl": "^5.24.0",
"next": "^16.2.9",
"next-auth": "5.0.0-beta.31",
"open-location-code": "^1.0.3",
"pdfjs-dist": "^6.1.200",
"pg": "^8.22.0",
"pg-boss": "^12.23.0",
"pino": "^10.3.1",
"pmtiles": "^4.4.1",
"postal-mime": "^2.7.5",
"react": "^19.2.7",
"react-day-picker": "^10.0.1",
"react-dom": "^19.2.7",
"react-hook-form": "^7.80.0",
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"tesseract.js": "^7.0.0",
"unzipit": "^2.0.3",
"vaul": "^1.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.10.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitest/coverage-v8": "^4.1.7",
"drizzle-kit": "^0.31.10",
"eslint": "^9.36.0",
"eslint-config-next": "^16.2.6",
"eslint-plugin-import": "^2.32.0",
"fflate": "^0.8.3",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"pdf-lib": "^1.17.1",
"pino-pretty": "^13.1.3",
"playwright": "^1.60.0",
"postcss": "^8.5.15",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"sharp": "^0.34.5",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}