-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
113 lines (113 loc) · 2.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "sanity-next-template",
"version": "0.0.0",
"private": true,
"description": "Sanity & Next.js template",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next",
"test": "tsc && next lint",
"tsc": "tsc",
"lint": "next lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"engines": {
"node": ">=18.17.1"
},
"author": "Aron Hafner",
"license": "MIT",
"dependencies": {
"@portabletext/react": "^3.0.11",
"@sanity/asset-utils": "^1.3.0",
"@sanity/client": "^6.10.0",
"@sanity/image-url": "^1.0.2",
"@sanity/overlays": "^2.3.0",
"@sanity/preview-url-secret": "^1.4.0",
"@sanity/react-loader": "1.6.4",
"@sanity/types": "^3.23.1",
"@sanity/ui": "^1.9.3",
"@sanity/vision": "^3.23.1",
"@vercel/analytics": "^1.1.1",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"framer-motion": "^10.16.16",
"get-youtube-id": "^1.0.1",
"next": "^14.0.4",
"next-sanity": "^7.0.4",
"next-sanity-image": "^6.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-is": "^18.2.0",
"react-youtube": "^10.1.0",
"rxjs": "^7.8.1",
"sanity": "^3.23.1",
"slugify": "^1.6.6",
"styled-components": "^6.1.2",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@sanity/cli": "^3.23.1",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.56.0",
"eslint-config-next": "^14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vercel": "^33.0.1"
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "always",
"semi": true,
"useTabs": false,
"tabWidth": 2
},
"eslintConfig": {
"plugins": [
"@typescript-eslint"
],
"extends": [
"next",
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"semi": "error",
"comma-dangle": "off",
"no-multiple-empty-lines": "error",
"no-multi-spaces": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/consistent-type-assertions": [
"error",
{
"assertionStyle": "as",
"objectLiteralTypeAssertions": "allow-as-parameter"
}
]
}
}
}