-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.63 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.63 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
{
"name": "pet-social-network",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint:fix": "eslint --fix",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check .",
"cleanup": "rm -rf node_modules package-lock.json .next"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-aspect-ratio": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@tailwindcss/postcss": "^4.1.3",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"framer-motion": "^11.18.2",
"gl-matrix": "^3.4.3",
"lucide-react": "^0.475.0",
"next": "15.2.4",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.1.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^20.17.30",
"@types/react": "^19",
"@types/react-dom": "^19.1.1",
"eslint": "^9.24.0",
"eslint-config-next": "15.1.7",
"eslint-plugin-import-helpers": "2.0.1",
"eslint-plugin-prettier": "5.2.1",
"postcss": "^8.5.3",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.11",
"sass": "^1.86.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
}
}