-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.38 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.38 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
{
"name": "pinpoint-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "rm -rf .next && next build",
"start": "next start",
"lint:next": "next lint",
"lint": "eslint . --ext .tsx,.ts",
"lint:fix": "eslint . --fix",
"format": "prettier --write . --ignore-path .prettierignore",
"format:check": "prettier --check . --ignore-path .prettierignore",
"checks": "npm run lint && npm run format:check && npm run build",
"generate:icons": "npx @svgr/cli --out-dir components/icons --ignore-existing --typescript --replace-attr-values #fff=currentColor,#000=currentColor --jsx-runtime automatic --icon -- public/icons"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@radix-ui/react-visually-hidden": "^1.2.3",
"axios": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"formidable": "^3.5.4",
"jspdf": "^3.0.4",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"motion": "^12.23.0",
"next": "15.3.6",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.5",
"nuqs": "^2.4.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-intersection-observer": "^9.16.0",
"sonner": "^2.0.6",
"swiper": "^11.2.10",
"tailwind-merge": "^3.3.1",
"typescript": "^5",
"vaul": "^1.1.2",
"zod": "^4.0.5",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@svgr/cli": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@types/formidable": "^3.4.5",
"@types/lodash": "^4.17.20",
"@types/node": "^20",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/swiper": "^6.0.0",
"eslint": "^9",
"eslint-config-next": "^15.3.6",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.5"
}
}