-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.13 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
{
"name": "r2r-next",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"test": "vitest",
"lint": "next lint",
"fmt": "npx prettier --write .",
"typecheck": "tsc --noEmit",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^3.3.4",
"@popperjs/core": "^2.11.8",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"bootstrap": "^5.2.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^2.28.0",
"ky": "^1.2.2",
"lucide-react": "^0.358.0",
"next": "13.5.6",
"react": "18.2.0",
"react-bootstrap": "^2.10.1",
"react-dom": "18.2.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.51.0",
"react-scroll": "^1.8.4",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.5.6",
"@testing-library/react": "^15.0.7",
"@types/node": "16.11.12",
"@types/react": "18.2.66",
"@types/react-bootstrap": "^0.32.29",
"@types/react-dom": "^18.2.22",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-scroll": "^1.8.3",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"cross-env": "^7.0.3",
"eslint": "8.38.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^8.3.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"prettier": "2.5.1",
"tailwindcss": "^3.4.1",
"typescript": "5.1.6",
"vitest": "^1.6.0"
}
}