-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.1 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
{
"name": "splitcrew",
"version": "0.1.0",
"private": true,
"description": "Self-hosted trip management — expense splitting, shopping, meals, logbook & more for crews and groups",
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:init": "psql $DATABASE_URL < scripts/schema.sql && psql $DATABASE_URL < scripts/seed.sql",
"db:reset": "bash scripts/reset-db.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:currencies": "node scripts/test-currencies.mjs",
"native:assets": "node scripts/gen-native-assets.mjs",
"cap:add:ios": "cap add ios",
"cap:add:android": "cap add android",
"cap:sync": "cap sync",
"cap:assets": "capacitor-assets generate --iconBackgroundColor '#000000' --splashBackgroundColor '#000000' --splashBackgroundColorDark '#000000'",
"cap:open:ios": "cap open ios",
"cap:open:android": "cap open android"
},
"keywords": [
"sailing",
"trip-management",
"expense-splitting",
"crew",
"self-hosted"
],
"license": "MIT",
"dependencies": {
"@capacitor/app": "^8.1.0",
"@capacitor/browser": "^8.0.3",
"@capacitor/core": "^8.4.1",
"@capacitor/keyboard": "^8.0.5",
"@capacitor/splash-screen": "^8.0.1",
"@capacitor/status-bar": "^8.0.2",
"@tailwindcss/postcss": "^4.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^25.9.2",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.40.0",
"iron-session": "^8.0.4",
"lucide-react": "^1.17.0",
"next": "^16.2.7",
"pg": "^8.21.0",
"postcss": "^8.5.15",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.5.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
},
"devDependencies": {
"@capacitor/android": "^8.4.1",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^8.4.1",
"@capacitor/ios": "^8.4.1",
"vitest": "^4.1.8"
}
}