-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.5 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.5 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
75
76
77
78
79
{
"name": "nexity",
"version": "1.0.0",
"description": "Sanity.io & Next.js 15 Starter",
"author": "Pagepro <jakub.dakowicz@pagepro.co> (https://pagepro.co)",
"license": "ISC",
"packageManager": "pnpm@9.0.0",
"scripts": {
"predev": "pnpm ts:typegen",
"prebuild": "pnpm ts:typegen",
"dev": "next dev",
"dev:turbopack": "next dev --turbopack",
"build": "pnpm manifest && next build",
"build:web": "next build",
"start": "next start",
"lint": "next lint",
"manifest": "sanity manifest extract --path public/admin/static",
"ts:extract": "sanity schema extract",
"ts:generate": "sanity typegen generate",
"ts:typegen": "pnpm ts:extract && pnpm ts:generate",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@c15t/nextjs": "^1.6.1",
"@next/bundle-analyzer": "^15.4.4",
"@portabletext/to-html": "^2.0.14",
"@sanity/code-input": "^5.1.3",
"@sanity/dashboard": "^4.1.4",
"@sanity/document-internationalization": "^3.3.3",
"@sanity/image-url": "^1.1.0",
"@sanity/preview-url-secret": "^2.1.14",
"@sanity/ui": "^2.16.9",
"@sanity/vision": "^4.1.1",
"@tailwindcss/postcss": "^4.1.11",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"clsx": "^2.1.1",
"feed": "^5.1.0",
"lucide-react": "^0.525.0",
"next": "^15.4.4",
"next-sanity": "^10.0.4",
"next-sanity-image": "^6.2.0",
"nuqs": "^2.4.3",
"octokit": "^5.0.3",
"react": "^19.1.0",
"react-device-detect": "^2.2.3",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"sanity": "^4.1.1",
"sanity-plugin-dashboard-widget-vercel": "^3.1.4",
"sanity-plugin-simpler-color-input": "^3.1.1",
"server-only": "^0.0.1",
"shiki": "^3.8.1",
"styled-components": "^6.1.19",
"tailwind-merge": "^3.3.1",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@sanity/eslint-config-studio": "^5.0.2",
"@types/node": "^24.1.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"eslint-config-next": "^15.4.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3"
}
}