-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next",
"format": "npx prettier --write . --ignore-path .gitignore",
"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": {
"@headlessui/react": "^1.7.16",
"@next/font": "^13.1.1",
"@portabletext/react": "^3.0.4",
"@sanity/client": "^6.1.7",
"@sanity/code-input": "^3.0.1",
"@sanity/color-input": "^3.1.0",
"@sanity/image-url": "^1.0.2",
"@sanity/vision": "^3.14.1",
"@vercel/og": "^0.0.21",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"framer-motion": "^10.0.1",
"intl-segmenter-polyfill": "^0.4.4",
"next": "^13.4.9",
"next-plausible": "^3.7.2",
"next-sanity": "^5.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-refractor": "^2.1.7",
"sanity": "^3.14.1",
"sanity-plugin-asset-source-unsplash": "^1.0.1",
"server-only": "^0.0.1",
"sharp": "^0.32.4",
"slugify": "^1.6.5",
"styled-components": "^5.3.6",
"suspend-react": "^0.0.9",
"swr": "^2.0.0",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.29.5-appdir.0",
"@svgr/webpack": "^6.5.1",
"@tailwindcss/typography": "^0.5.8",
"@types/react": "^18.0.26",
"autoprefixer": "^10.4.13",
"eslint": "^8.30.0",
"eslint-config-next": "^13.1.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-packagejson": "^2.3.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16"
}
}