-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.88 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.88 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
{
"name": "web3ld-website",
"version": "1.0.0",
"packageManager": "pnpm@10.13.1",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start -H 0.0.0.0",
"lint": "eslint .",
"jsonld:generate": "tsx scripts/jsonld/generate-index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:contact": "cross-env RUN_CONTACT_TESTS=true playwright test e2e/contact-form.spec.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@marsidev/react-turnstile": "^1.3.1",
"@radix-ui/react-accordion": "^1.2.12",
"cloudflare-worker": "workspace:*",
"framer-motion": "^12.23.22",
"next": "15.5.9",
"react": "19.1.4",
"react-dom": "19.1.4",
"react-hook-form": "^7.63.0",
"zod": "^3.22.3"
},
"devDependencies": {
"@changesets/cli": "2.29.7",
"@eslint/js": "9.36.0",
"@playwright/test": "1.55.1",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "8.45.0",
"@typescript-eslint/parser": "8.45.0",
"@vitejs/plugin-react": "^5.0.4",
"cross-env": "^10.0.0",
"dotenv": "17.2.2",
"eslint": "9.36.0",
"eslint-config-next": "15.5.4",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"globals": "16.4.0",
"happy-dom": "^19.0.1",
"tsx": "^4.20.6",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}