-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.6 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
{
"name": "schelling-points",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\"",
"dev:server": "bun --watch src/server.ts",
"dev:client": "bun scripts/build.ts --watch",
"build": "bun scripts/build.ts",
"start": "bun src/server.ts",
"setup-ollama": "bash scripts/setup-ollama.sh",
"postinstall": "bash scripts/setup-ollama.sh",
"cap:build": "API_HOST=schellingpoints.app bun scripts/build.ts && npx cap sync",
"cap:open": "npx cap open ios",
"test:e2e": "playwright test"
},
"dependencies": {
"@capacitor/app": "^8.0.1",
"@capacitor/core": "^8.1.0",
"@capacitor/haptics": "^8.0.1",
"@capacitor/ios": "^8.1.0",
"@capacitor/network": "^8.0.1",
"@capacitor/push-notifications": "^8.0.1",
"@capgo/capacitor-shake": "^8.0.22",
"@capgo/capacitor-updater": "^8.43.9",
"@parse/node-apn": "^7.1.0",
"canvas-confetti": "^1.9.4",
"howler": "^2.2.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-qrcode-logo": "^4.0.0",
"react-router": "^7.13.0",
"react-swipeable": "^7.0.2",
"stemmer": "^2.0.1"
},
"devDependencies": {
"@capacitor/cli": "^8.1.0",
"@capgo/cli": "^7.84.2",
"@playwright/test": "^1.58.2",
"@types/express": "^5.0.6",
"@types/express-ws": "^3.0.6",
"@types/howler": "^2.2.12",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"concurrently": "^9.2.1",
"esbuild": "^0.25.0",
"express": "^5.2.1",
"express-ws": "^5.0.2",
"tsx": "^4.21.0"
}
}