-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.21 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
{
"name": "seasaba-web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "next typegen && tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:coverage": "vitest run --coverage",
"build:test": "node scripts/build-test.mjs",
"test:e2e": "playwright test",
"test:smoke": "playwright test --grep @smoke",
"test:smoke:prod": "playwright test --config playwright.production.config.ts",
"test:perf": "node scripts/perf-baseline.mjs",
"check:docs": "node scripts/check-doc-links.mjs",
"check:env": "node scripts/check-env-vars.mjs",
"check:hygiene": "node scripts/check-repo-hygiene.mjs",
"check": "npm run check:docs && npm run check:env && npm run check:hygiene",
"test:ci": "npm run check && npm run lint && npm run typecheck && npm run test:coverage && npm run build:test && npm run test:e2e"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.20",
"@vercel/analytics": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"firebase": "^12.18.0",
"jspdf": "^4.2.1",
"lucide-react": "^1.34.0",
"next": "^16.3.3",
"radix-ui": "^1.6.7",
"react": "19.2.8",
"react-dom": "19.2.8",
"tailwind-merge": "^3.6.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.0",
"@playwright/test": "^1.63.0",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@types/node": "^24",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^9",
"eslint-config-next": "^16.3.3",
"jsdom": "^30.0.1",
"lighthouse": "^13.4.1",
"shadcn": "^4.21.0",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.1.11"
},
"overrides": {
"postcss": "^8.5.26"
},
"allowScripts": {
"msw@2.12.9": true,
"sharp@0.34.5": true,
"unrs-resolver@1.12.2": true
}
}