-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "nextjs-blog-cms-sanity-v3",
"private": true,
"scripts": {
"build": "next build",
"dev": "next --turbopack",
"format": "npx prettier --write . --ignore-path .gitignore --cache",
"lint": "next lint . --ignore-path .gitignore",
"lint:fix": "npm run format && npm run lint -- --fix",
"start": "next start",
"type-check": "tsc --noEmit"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"@sanity/client": "6.29.0",
"@sanity/icons": "3.7.0",
"@sanity/image-url": "1.1.0",
"@sanity/vision": "3.84.0",
"@sanity/visual-editing": "2.13.17",
"@sanity/webhook": "4.0.4",
"@vercel/og": "0.6.8",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"groq": "3.84.0",
"intl-segmenter-polyfill": "0.4.4",
"next": "15.3.0",
"next-sanity": "9.10.1",
"next-sanity-image": "6.1.1",
"react": "19.1.0",
"react-dom": "19.1.0",
"sanity": "3.84.0",
"sanity-plugin-asset-source-unsplash": "3.0.3",
"sanity-plugin-iframe-pane": "3.2.1",
"styled-components": "6.1.17",
"swr": "2.3.3"
},
"devDependencies": {
"@tailwindcss/postcss": "4.1.3",
"@tailwindcss/typography": "0.5.16",
"@types/react": "19.1.0",
"eslint": "8.57.1",
"eslint-config-next": "15.3.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"postcss": "8.5.3",
"prettier": "3.5.3",
"prettier-plugin-packagejson": "2.5.10",
"prettier-plugin-tailwindcss": "0.6.11",
"tailwindcss": "4.1.3",
"typescript": "5.8.3"
},
"overrides": {
"next-sanity-image": {
"next": "15.3.0",
"react": "19.1.0"
}
},
"engines": {
"node": ">=20"
}
}