-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint:fix": "eslint --fix src --ext js,jsx,ts,tsx",
"prettify": "prettier --write ."
},
"dependencies": {
"@hookform/resolvers": "^3.3.2",
"@mailchimp/mailchimp_marketing": "^3.0.80",
"@radix-ui/colors": "^3.0.0",
"@vanilla-extract/css": "^1.14.0",
"next": "14.0.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.49.2",
"react-hot-toast": "^2.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vanilla-extract/next-plugin": "^2.3.2",
"autoprefixer": "^10.0.1",
"eslint": "^8.55.0",
"eslint-config-next": "14.0.3",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"postcss": "^8",
"prettier": "^3.1.0",
"typescript": "^5.3.3"
}
}