-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.28 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
{
"name": "tally-splitbill",
"version": "1.0.0",
"description": "A local-first shared-expense app with optional Supabase-backed live collaboration.",
"private": true,
"license": "MIT",
"homepage": "https://pengfanz.github.io/splitbill/",
"repository": {
"type": "git",
"url": "git+https://github.com/PengfanZ/splitbill.git"
},
"bugs": {
"url": "https://github.com/PengfanZ/splitbill/issues"
},
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:pages": "vite build --base=/splitbill/",
"backend:start": "supabase start",
"backend:stop": "supabase stop",
"backend:reset": "supabase db reset",
"lint": "eslint . --max-warnings=0",
"preview": "vite preview",
"test": "vitest run",
"test:all": "npm run test:coverage && npm run test:e2e",
"test:behavior": "vitest run src/behavior.test.tsx",
"test:backend": "supabase test db",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test && playwright test --config=playwright.ai.config.ts",
"test:e2e:ai": "playwright test --config=playwright.ai.config.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@tanstack/react-query": "5.101.2",
"lucide-react": "0.468.0",
"qrcode.react": "^4.2.0",
"react": "19.2.7",
"react-dom": "19.2.7",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "22.19.19",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vite-pwa/assets-generator": "^1.0.2",
"@vitejs/plugin-react": "6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"supabase": "^2.109.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.64.0",
"vite": "8.1.4",
"vite-plugin-pwa": "^1.3.0",
"vitest": "^4.1.10"
},
"overrides": {
"brace-expansion": "5.0.9",
"ejs": "6.0.1",
"fast-uri": "3.1.5",
"nanoid": "3.3.17",
"postcss": "8.5.25",
"sharp": "0.35.3",
"undici": "7.29.0"
},
"type": "module"
}