-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.77 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
{
"name": "zen",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "NODE_ENV=production next build",
"dev": "NODE_ENV=development next dev",
"dev:lambda": "netlify dev",
"format": "npm-run-all -s format:*",
"format:fix": "npm-run-all -s lint:fix lint:fix:*",
"format:md": "remark . -o --",
"format:packages": "syncpack format",
"lint": "next lint",
"lint:check:prettier": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"lint:fix": "next lint --fix",
"lint:fix:css": "npx stylelint '**/*.css' --fix",
"lint:fix:prettier": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "3.3.4",
"@netlify/emails": "1.1.0",
"@netlify/functions": "2.6.0",
"@radix-ui/react-avatar": "1.0.4",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-scroll-area": "1.0.5",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-separator": "1.0.3",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-tooltip": "1.0.7",
"@radix-ui/react-visually-hidden": "1.0.3",
"@react-hookz/web": "24.0.4",
"class-variance-authority": "0.7.0",
"next": "14.1.0",
"next-themes": "0.2.1",
"powerglitch": "2.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.48.2",
"react-wrap-balancer": "1.1.1",
"sharp": "0.33.4",
"slugify": "1.6.6",
"sonner": "1.4.2",
"zod": "3.22.4",
"zustand": "4.5.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@newlevelup/commitlint-config": "1.1.14",
"@newlevelup/editor-config": "1.0.1",
"@newlevelup/remark-config": "1.0.9",
"@newlevelup/syncpack-config": "1.2.0",
"@radix-ui/react-dialog": "1.0.5",
"@tailwindcss/typography": "0.5.13",
"@types/node": "20.11.20",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@typescript-eslint/parser": "7.0.1",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-tailwindcss": "3.14.3",
"netlify-cli": "17.17.1",
"next-secure-headers": "2.2.0",
"npm-run-all2": "6.1.2",
"postcss": "8.4.39",
"prettier": "3.2.5",
"remark": "15.0.1",
"remark-cli": "12.0.1",
"schema-dts": "1.1.2",
"stylelint": "15.11.0",
"stylelint-config-standard": "36.0.0",
"syncpack": "12.3.3",
"tailwind-merge": "2.2.1",
"tailwindcss": "3.4.4",
"tailwindcss-animate": "1.0.7",
"typescript": "5.3.3"
},
"remarkConfig": {
"plugins": [
"@newlevelup/remark-config"
]
}
}