-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.16 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
{
"name": "fpl-temp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"prepare": "husky",
"mcp:start": "npx tsx mcp-server/index.ts",
"docker:build": "docker build -t fpl-insights .",
"docker:run": "docker run -p 3000:3000 -v $(pwd)/data:/app/data --env-file .env fpl-insights",
"docker:dev": "docker compose -f docker-compose.dev.yml up --build"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@modelcontextprotocol/sdk": "^1.25.3",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-virtual": "^3.13.18",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.1",
"@use-gesture/react": "^10.3.1",
"better-sqlite3": "^12.6.2",
"next": "16.1.4",
"node-cron": "^4.2.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"resend": "^6.9.1",
"uuid": "^13.0.0",
"web-push": "^3.6.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/node-cron": "^3.0.11",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^10.0.0",
"@types/web-push": "^3.6.4",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
}
}