-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 5.18 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 5.18 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
109
110
111
112
{
"name": "localloop",
"version": "0.1.0",
"private": true,
"scripts": {
"setup": "./scripts/comprehensive-setup-modern.sh",
"dev": "lsof -ti:3000 | xargs kill -9 2>/dev/null || true && next dev -p 3000",
"dev:with-stripe": "lsof -ti:3000 | xargs kill -9 2>/dev/null || true && concurrently \"next dev -p 3000\" \"stripe listen --forward-to localhost:3000/api/webhooks/stripe\"",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test:unit": "jest --testPathPattern='tests/unit|lib.*__tests__|components.*__tests__'",
"test:unit:coverage": "jest --testPathPattern='tests/unit|lib.*__tests__|components.*__tests__' --coverage",
"test:integration": "jest --testPathPattern='tests/integration'",
"db:setup:test": "echo 'Database setup for tests - configure as needed'",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:e2e": "playwright test",
"test:e2e:ci": "playwright test --config=playwright.ci.config.ts",
"test:e2e:headed": "playwright test --headed",
"test:e2e:ui": "playwright test --ui",
"test:e2e:example": "playwright test e2e/example.spec.ts",
"test:e2e:example:headed": "playwright test e2e/example.spec.ts --headed",
"test:e2e:example:debug": "playwright test e2e/example.spec.ts --headed --debug",
"test:e2e:auth": "playwright test e2e/authentication-flow.spec.ts",
"test:e2e:purchase": "playwright test e2e/ticket-purchase-flow.spec.ts",
"test:e2e:refund": "playwright test e2e/refund-production.spec.ts",
"test:e2e:critical": "playwright test e2e/critical-user-journeys.spec.ts",
"test:e2e:dashboard": "playwright test e2e/simple-dashboard-test.spec.ts",
"test:e2e:suite": "playwright test e2e/authentication-flow.spec.ts e2e/ticket-purchase-flow.spec.ts e2e/refund-production.spec.ts",
"test:cross-browser": "playwright test --project='Desktop Chrome' --project='Desktop Firefox' --project='Desktop Safari'",
"test:mobile": "playwright test --project='Mobile Chrome' --project='Mobile Safari'",
"test:load": "npm run test:load:basic",
"test:load:basic": "k6 run tests/load/basic-load-test.js",
"test:load:extended": "k6 run tests/load/extended-load-test.js",
"test:load:spike": "k6 run tests/load/spike-test.js",
"test:load:stress": "k6 run tests/load/stress-test.js",
"coverage": "jest --coverage",
"coverage:integration": "jest --testPathPattern='tests/integration' --coverage",
"coverage:all": "jest --coverage --testPathPattern='tests'",
"coverage:report": "jest --coverage && node scripts/coverage-analysis.js",
"coverage:open": "npm run coverage && open coverage/lcov-report/index.html",
"coverage:check": "jest --coverage --coverageThreshold '{\"global\":{\"branches\":80,\"functions\":80,\"lines\":80,\"statements\":80}}'",
"coverage:badge": "node scripts/coverage-analysis.js --badge-only",
"ci:lint": "npm run lint && npm run type-check",
"ci:test": "npm run test:ci",
"ci:e2e": "npm run test:e2e",
"ci:security": "npm audit --audit-level=high",
"ci:full": "npm run ci:lint && npm run ci:test && npm run ci:e2e",
"ci:local": "scripts/ci-local-check.sh",
"init:project": "cp -n .env.example .env.local && echo '\\u001b[32m✔︎ .env.local created → add your keys then run npm run secrets:push\\u001b[0m'",
"secrets:push": "scripts/push-secrets.sh",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@react-email/components": "^0.0.41",
"@react-email/render": "^1.1.2",
"@stripe/react-stripe-js": "^3.7.0",
"@stripe/stripe-js": "^7.3.1",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"google-auth-library": "^9.15.1",
"googleapis": "^149.0.0",
"lucide-react": "^0.511.0",
"next": "15.3.2",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"resend": "^4.5.1",
"stripe": "^18.2.0",
"tailwind-merge": "^3.3.0",
"web-vitals": "^5.0.2",
"zod": "^3.25.36"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@playwright/test": "^1.51.0",
"@tailwindcss/postcss": "^4.1.8",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"concurrently": "^9.1.2",
"dotenv": "^16.5.0",
"eslint": "^9.16.0",
"eslint-config-next": "15.3.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.2",
"webpack-bundle-analyzer": "^4.10.2"
}
}