-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
91 lines (91 loc) · 2.97 KB
/
package.json
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": "dfweb-v4",
"version": "1.0.8",
"private": true,
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"dev": "next dev --turbopack",
"lhci": "lhci autorun",
"lhci:perf": "lhci autorun --collect.settings.preset=perf",
"lhci:desktop": "lhci autorun --collect.settings.preset=desktop",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,json}\"",
"test": "jest --coverage --collectCoverageFrom='src/components/**/*.{js,jsx,ts,tsx}' --collectCoverageFrom='!src/components/Animations/Matrix.component.{js,jsx,ts,tsx}'",
"test:watch": "jest --watch",
"cypress:open": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-test dev 3000 cypress:headless",
"refresh": "pnpm i && rm -rf node_modules && rm pnpm-lock.yaml && pnpm store prune && pnpm i && pnpm format",
"ladle": "ladle serve",
"typegen": "sanity schema extract && sanity typegen generate"
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@hookform/resolvers": "^4.1.0",
"@portabletext/react": "^3.2.1",
"@sanity/client": "^6.28.0",
"@sanity/image-url": "^1.1.0",
"@vercel/speed-insights": "^1.2.0",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"envalid": "^8.0.0",
"jest": "^29.7.0",
"motion": "^12.4.7",
"next": "15.1.7",
"next-sanity": "^9.8.59",
"path-to-regexp": "^8.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.5.0",
"react-use": "^17.6.0",
"sanity": "^3.76.3",
"sitemap": "^8.0.0",
"ts-node": "^10.9.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@jest/expect": "^29.7.0",
"@jest/globals": "^29.7.0",
"@ladle/react": "^5.0.1",
"@lhci/cli": "^0.14.0",
"@playwright/test": "^1.50.1",
"@portabletext/types": "^2.0.13",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"axe-core": "^4.10.2",
"cypress": "13.17.0",
"cypress-axe": "^1.6.0",
"eslint": "9.20.1",
"eslint-config-next": "15.1.7",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-test-rules": "link:eslint-plugin-test-rules",
"eslint-plugin-testing-library": "^7.1.1",
"expect": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jsdom-testing-mocks": "^1.13.1",
"postcss": "^8.5.3",
"prettier": "3.5.1",
"tailwindcss": "3.4.17",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"wait-on": "^8.0.2"
}
}