forked from sanity-io/template-nextjs-personal-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.02 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
{
"name": "sanity-template-template-nextjs-personal-website",
"private": true,
"scripts": {
"analyze": "next experimental-analyze --serve",
"prebuild": "npm run stega-warn",
"build": "next build --turbopack && sanity manifest extract --path public/studio/static",
"predev": "npm run typegen && npm run stega-warn",
"dev": "next --turbopack",
"format": "npx prettier --write . --ignore-path .gitignore",
"lint": "eslint .",
"lint:fix": "npm run format && npm run lint -- --fix",
"start": "next start",
"stega-warn": "echo 'This template is using stega to embed Content Source Maps, see more information here: https://www.sanity.io/docs/loaders-and-overlays#26cf681fadd4'",
"type-check": "next typegen && tsc --noEmit",
"typegen": "sanity schema extract && sanity typegen generate"
},
"dependencies": {
"@next/env": "16.2.12",
"@sanity/client": "7.25.0",
"@sanity/demo": "2.0.0",
"@sanity/icons": "5.2.1",
"@sanity/image-url": "2.1.1",
"@sanity/ui": "3.5.0",
"@sanity/util": "6.7.0",
"@sanity/vision": "6.7.0",
"@tailwindcss/typography": "0.5.20",
"@vercel/speed-insights": "2.0.0",
"classnames": "2.5.1",
"date-fns": "4.4.0",
"next": "16.2.12",
"next-sanity": "13.2.3",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-live-transitions": "0.2.0",
"rxjs": "7.8.2",
"sanity": "6.7.0",
"sanity-plugin-asset-source-unsplash": "7.0.21",
"server-only": "0.0.1",
"sonner": "2.0.7",
"styled-components": "6.4.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@sanity/prettier-config": "3.0.0",
"@types/node": "25.9.5",
"@types/react": "19.2.17",
"autoprefixer": "10.5.4",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "9.39.5",
"eslint-formatter-gha": "2.0.1",
"eslint-plugin-react-hooks": "7.0.1",
"postcss": "8.5.24",
"prettier": "3.9.6",
"prettier-plugin-tailwindcss": "0.8.1",
"tailwindcss": "3.4.19",
"typescript": "6.0.3"
}
}