-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"private": true,
"name": "sanity-template-nexjs",
"version": "1.0.0",
"main": "package.json",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"keywords": [
"sanity",
"template",
"nextjs"
],
"dependencies": {
"@next/font": "^13.4.7",
"@sanity/demo": "^1.0.2",
"@sanity/icons": "^2.3.1",
"@sanity/ui": "^1.6.0",
"@sanity/vision": "^3.12.2",
"@tailwindcss/typography": "^0.5.9",
"next": "^13.4.7",
"next-sanity": "^5.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"sanity": "^3.12.2",
"styled-components": "^5.3.11",
"suspend-react": "^0.1.3"
},
"devDependencies": {
"@sanity/color": "^2.2.5",
"@sanity/eslint-config-studio": "^2.0.1",
"@types/node": "^20.3.1",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-next": "13.4.7",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-packagejson": "^2.4.3",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3"
},
"pnpm": {
"overrides": {
"@sanity/client": "^6.1"
}
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
}
}