-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.25 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.25 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
{
"name": "next-website-v2",
"version": "1.0.0",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"check:types": "yarn tsc",
"check:format": "yarn prettier --check .",
"format": "yarn prettier --write .",
"lint": "next lint",
"test": "vitest",
"all": "yarn check:types && yarn check:format && yarn lint && yarn test"
},
"dependencies": {
"@beehiiv/sdk": "^0.1.9",
"@cap.js/server": "^4.0.5",
"@cap.js/widget": "^0.1.41",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-navigation-menu": "^1.2.3",
"@radix-ui/themes": "^3.1.6",
"@react-email/render": "^2.0.0",
"classnames": "^2.5.1",
"next": "15.5.12",
"react": "19.2.3",
"react-countup": "^6.5.3",
"react-dom": "19.2.3",
"react-icons": "^5.4.0",
"react-markdown": "^10.0.0",
"react-modal": "^3.16.3",
"resend": "^6.6.0",
"sharp": "^0.34.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"zod": "^4.2.1"
},
"devDependencies": {
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/autoprefixer": "10.2.4",
"@types/node": "22.19.7",
"@types/postcss-import": "14.0.3",
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3",
"@types/react-modal": "3.16.3",
"@types/three": "0.182.0",
"@typescript-eslint/eslint-plugin": "8.53.1",
"@typescript-eslint/parser": "8.53.1",
"@vitejs/plugin-react": "4.7.0",
"autoprefixer": "10.4.27",
"eslint": "9.39.4",
"eslint-config-next": "15.5.12",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "7.37.5",
"jsdom": "26.1.0",
"postcss": "8.5.8",
"postcss-import": "16.1.1",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "3.2.4"
},
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">=20.0.0 <=22.22.0",
"npm": "please-use-yarn",
"yarn": ">=4.4.0"
}
}