-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.88 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
{
"name": "nextjs-blog",
"version": "0.1.0",
"private": true,
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "next lint",
"orval:generate": "orval --config orval.config.ts",
"orval:watch": "orval --config orval.config.ts --watch",
"prepare": "husky install"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"@nestjs/swagger": "^11.1.5",
"@radix-ui/react-dialog": "^1.1.13",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/themes": "^3.2.1",
"@tanstack/react-query": "^5.74.7",
"@tanstack/react-query-devtools": "^5.74.7",
"add": "^2.0.6",
"axios": "^1.9.0",
"class-variance-authority": "^0.7.1",
"classname": "*",
"clsx": "^2.1.1",
"date-fns": "^2.24.0",
"dotenv": "^16.5.0",
"embla-carousel-react": "^8.6.0",
"gray-matter": "^4.0.3",
"jotai": "^2.12.4",
"label": "^0.2.2",
"lucide-react": "^0.503.0",
"next": "^15.3.1",
"postcss": "^8.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"shadcn": "^2.5.0",
"tailwind": "^4.0.0",
"tailwind-merge": "^3.2.0",
"tailwindcss": "^4.1.4",
"zod": "^3.24.3"
},
"devDependencies": {
"@radix-ui/react-slot": "^1.2.2",
"@tailwindcss/cli": "^4.1.4",
"@tailwindcss/postcss": "^4.1.4",
"@types/node": "22.15.2",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"eslint": "^9.26.0",
"eslint-config-next": "^15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"orval": "^7.9.0",
"prettier": "^3.5.3",
"tw-animate-css": "^1.2.8"
}
}