-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.31 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
{
"name": "sidekick",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,md,json,css}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,css}\" --ignore-path .gitignore",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:install": "playwright install --with-deps chromium",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:reset": "supabase db reset",
"db:types": "supabase gen types typescript --local > types/database.ts",
"stripe:listen": "stripe listen --forward-to localhost:3000/api/webhooks/stripe",
"cap:sync": "next build && next export -o out 2>/dev/null || true && cap sync",
"cap:ios": "cap open ios",
"cap:android": "cap open android",
"cap:run:ios": "cap run ios",
"cap:run:android": "cap run android",
"prepare": "simple-git-hooks || true"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"dependencies": {
"@capacitor/android": "^6.1.2",
"@capacitor/app": "^6.0.1",
"@capacitor/core": "^6.1.2",
"@capacitor/haptics": "^6.0.1",
"@capacitor/ios": "^6.1.2",
"@capacitor/keyboard": "^6.0.2",
"@capacitor/share": "^6.0.2",
"@capacitor/status-bar": "^6.0.1",
"@mistralai/mistralai": "^1.4.0",
"@radix-ui/react-slot": "^1.1.0",
"@react-pdf/renderer": "^4.0.0",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.45.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.447.0",
"next": "^14.2.35",
"papaparse": "^5.4.1",
"posthog-js": "^1.165.0",
"posthog-node": "^4.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.12.7",
"server-only": "^0.0.1",
"sonner": "^1.5.0",
"stripe": "^16.12.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"xlsx": "^0.18.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@capacitor/cli": "^6.1.2",
"@playwright/test": "^1.47.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^20.16.10",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-v8": "^2.1.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.35",
"eslint-config-prettier": "^9.1.0",
"fake-indexeddb": "^6.0.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"simple-git-hooks": "^2.11.1",
"supabase": "^1.200.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{md,json,css}": [
"prettier --write"
]
},
"engines": {
"node": ">=20"
}
}