forked from sanity-io/template-nextjs-personal-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "sanity-template-template-nextjs-personal-website",
"private": true,
"scripts": {
"build": "next build",
"dev": "next",
"format": "npx prettier --write . --ignore-path .gitignore",
"lint": "next lint .",
"lint:fix": "npm run format && npm run lint -- --fix",
"start": "next start",
"type-check": "tsc --noEmit"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"@next/env": "14.2.4",
"@sanity/demo": "2.0.0",
"@sanity/icons": "3.3.0",
"@sanity/image-url": "1.0.2",
"@sanity/preview-url-secret": "1.6.17",
"@sanity/react-loader": "1.10.3",
"@sanity/ui": "2.4.0",
"@sanity/vision": "3.47.1",
"@tailwindcss/typography": "0.5.13",
"classnames": "2.5.1",
"date-fns": "3.6.0",
"next": "14.2.4",
"next-sanity": "9.3.10",
"react": "18.3.1",
"react-dom": "18.3.1",
"rxjs": "7.8.1",
"sanity": "3.47.1",
"sanity-plugin-asset-source-unsplash": "3.0.1",
"server-only": "0.0.1",
"styled-components": "6.1.11"
},
"devDependencies": {
"@types/react": "18.3.3",
"autoprefixer": "10.4.19",
"eslint": "8.57.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-simple-import-sort": "12.1.0",
"postcss": "8.4.38",
"prettier": "3.3.2",
"prettier-plugin-packagejson": "2.5.0",
"prettier-plugin-tailwindcss": "0.6.5",
"tailwindcss": "3.4.4",
"typescript": "5.4.5"
}
}