-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.22 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
{
"name": "draft-builder",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:db": "supabase start",
"dev": "supabase start && NODE_OPTIONS='--inspect' next dev",
"dev:stop": "supabase stop",
"dev:reset": "supabase db reset",
"db:types": "supabase gen types typescript --local > src/lib/database.types.ts",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "jest",
"test:integration": "jest --config jest.integration.config.ts",
"test:monitoring": "jest --testPathPattern=monitoring --verbose",
"test:monitoring:basic": "jest src/lib/monitoring/__tests__/basic-monitoring.test.ts src/lib/monitoring/__tests__/app-alerts.test.ts --verbose",
"type-check": "tsc --noEmit",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:debug": "playwright test --debug",
"e2e:headed": "playwright test --headed",
"e2e:smoke": "playwright test --grep @smoke",
"e2e:chrome": "playwright test --project=chromium-desktop",
"e2e:firefox": "playwright test --project=firefox-desktop",
"e2e:safari": "playwright test --project=webkit-desktop",
"e2e:mobile": "playwright test --project=mobile-chrome --project=mobile-safari",
"e2e:report": "playwright show-report e2e/reports/html",
"e2e:install": "playwright install --with-deps",
"e2e:codegen": "playwright codegen localhost:3000",
"e2e:check-env": "node e2e/check-env.js",
"ingest:espn-values": "ts-node --project scripts/tsconfig.json scripts/ingest-espn-values.ts"
},
"dependencies": {
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.50.0",
"@tanstack/react-query": "^5.85.0",
"@tanstack/react-query-devtools": "^5.85.0",
"@types/js-cookie": "^3.0.6",
"@types/regression": "^2.0.6",
"@vercel/analytics": "^1.3.1",
"axios": "^1.3.1",
"dexie": "^4.0.11",
"googleapis": "^142.0.0",
"ioredis": "^5.4.1",
"js-cookie": "^3.0.5",
"ml-regression": "^6.3.0",
"next": "^16.2.7",
"papaparse": "^5.3.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"recharts": "^2.15.3",
"regression": "^2.0.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@edge-runtime/jest-environment": "^4.0.0",
"@faker-js/faker": "^9.9.0",
"@playwright/test": "^1.54.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/papaparse": "^5.3.14",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"allure-playwright": "^3.3.3",
"babel-jest": "^29.7.0",
"dotenv": "^17.2.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.7",
"fake-indexeddb": "^6.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-extended": "^4.0.0",
"msw": "^2.10.4",
"pdf-parse": "^1.1.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5",
"whatwg-fetch": "^3.6.20"
}
}