-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.58 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.58 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": "f3-region-pages",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.0.0",
"engines": {
"node": "20.18.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "pnpm format:fix",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"db:generate:migration": "drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config drizzle.config.ts",
"db:push": "drizzle-kit push --config drizzle.config.ts",
"db:reset": "bun scripts/reset.ts",
"db:daily-ingest:install": "bash scripts/install-f3-region-pages-data-ingest.sh",
"db:daily-ingest:run-local": "bash scripts/f3-region-pages-data-ingest.sh",
"db:daily-ingest:run-agent": "launchctl start com.f3.dataingest",
"db:seed:regions": "bun scripts/seed-regions.ts",
"db:seed:workouts": "bun scripts/seed-workouts.ts",
"db:seed:enrich-regions": "bun scripts/enrich-regions.ts",
"db:seed": "bun scripts/seed.ts",
"db:prune:regions": "bun scripts/prune-regions.ts",
"db:prune:workouts": "bun scripts/prune-workouts.ts",
"db:setup:local": "scripts/db-setup-local.sh",
"db:generate:warehouse-schema": "bun scripts/generate-warehouse-schema.ts",
"docker:kill": "scripts/docker-kill.sh",
"supabase:start": "supabase start",
"firebase:setup-secrets": "/usr/bin/env bash scripts/firebase-env.sh",
"firebase:deploy": "firebase deploy",
"skills:check": "npx skills check",
"skills:update": "npx skills update",
"postinstall": "pnpm skills:check"
},
"dependencies": {
"@google-cloud/cloud-sql-connector": "^1.9.2",
"dotenv": "^16.4.7",
"lodash": "^4.17.21",
"next": "15.1.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.20",
"@types/node": "^20",
"@types/pg": "^8.11.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"bun": "^1.2.10",
"drizzle-kit": "^0.30.4",
"drizzle-orm": "^0.39.3",
"eslint": "^9",
"eslint-config-next": "15.1.9",
"firebase": "^12.0.0",
"firebase-tools": "^14.27.0",
"jest": "^29.7.0",
"pg": "^8.13.3",
"postcss": "^8",
"prettier": "^3.6.2",
"supabase": "^2.22.6",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"typescript": "^5"
}
}