-
Notifications
You must be signed in to change notification settings - Fork 116
/
package.json
56 lines (56 loc) · 1.5 KB
/
package.json
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
{
"name": "nextjs-blog-cms-sanity-v3",
"private": true,
"scripts": {
"build": "next build",
"dev": "next",
"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.22.4",
"@sanity/icons": "3.4.0",
"@sanity/image-url": "1.1.0",
"@sanity/vision": "3.64.1",
"@sanity/visual-editing": "2.7.0",
"@sanity/webhook": "4.0.4",
"@vercel/og": "0.6.3",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"groq": "3.64.1",
"intl-segmenter-polyfill": "0.4.4",
"next": "14.2.18",
"next-sanity": "9.8.13",
"next-sanity-image": "6.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"sanity": "3.64.1",
"sanity-plugin-asset-source-unsplash": "3.0.1",
"sanity-plugin-iframe-pane": "3.1.6",
"styled-components": "6.1.13",
"swr": "2.2.5"
},
"devDependencies": {
"@types/react": "18.3.12",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-next": "14.2.18",
"eslint-plugin-simple-import-sort": "12.1.1",
"postcss": "8.4.49",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.3",
"prettier-plugin-tailwindcss": "0.6.8",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"engines": {
"node": ">=16"
}
}