-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.51 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.51 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
{
"name": "clubs-en-action",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.30.1",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "next dev --turbopack",
"dev:webpack": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pages:build": "pnpm next-on-pages",
"preview": "pnpm pages:build && wrangler pages dev",
"deploy": "pnpm pages:build && wrangler pages deploy .vercel/output/static --project-name=clubs-en-action",
"test": "jest",
"test:watch": "jest --watch",
"test:with-server": "node scripts/test-with-server.js --with-server",
"test:integration": "RUN_INTEGRATION_TESTS=true jest",
"test:all": "node scripts/test-with-server.js --with-server --coverage",
"lhci": "lhci autorun"
},
"dependencies": {
"add-to-calendar-button-react": "^2.9.1",
"clsx": "^2.1.1",
"lucide-react": "^0.513.0",
"next": "15.5.9",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"tailwind-merge": "^3.3.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-syntax-jsx": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@cloudflare/next-on-pages": "^1.13.16",
"@cloudflare/workers-types": "^4.20260301.1",
"@eslint/eslintrc": "^3.3.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/node": "^22.15.30",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"autoprefixer": "^10.4.21",
"babel-jest": "29.7.0",
"eslint": "^9.39.1",
"eslint-config-next": "15.3.6",
"jest": "^29.7.0",
"jest-axe": "^10.0.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "^8.5.4",
"tailwindcss": "^3.4.17",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"vercel": "^48.12.1",
"wrangler": "^4.69.0"
},
"pnpm": {
"overrides": {
"form-data@>=4.0.0 <4.0.4": "^4.0.4",
"glob@>=10.2.0 <10.5.0": "^10.5.0",
"undici@>=4.5.0 <5.29.0": "^5.29.0",
"brace-expansion@>=1.0.0 <=1.1.11": "^1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": "^2.0.2",
"@eslint/plugin-kit@<0.3.4": "^0.3.4",
"js-yaml@<3.14.2": "^3.14.2",
"js-yaml@>=4.0.0 <4.1.1": "^4.1.1",
"cookie@<0.7.0": "^0.7.0",
"esbuild@<=0.24.2": "^0.25.0"
}
}
}