-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"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",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"sanity",
"template",
"nextjs"
],
"dependencies": {
"@automaticengineering/react-article": "^1.0.1",
"@next/font": "^13.1.2",
"@portabletext/react": "^3.0.11",
"@sanity/client": "^6.12.3",
"@sanity/demo": "^1.0.1",
"@sanity/icons": "^2.2.2",
"@sanity/ui": "^1.0.14",
"@sanity/vision": "^3.2.4",
"@tailwindcss/typography": "^0.5.9",
"@use-gesture/react": "^10.2.24",
"next": "^13.1.2",
"next-sanity": "^4.1.0",
"next-sanity-image": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.5",
"react-is": "^18.2.0",
"react-spring": "^9.7.1",
"react-use-measure": "^2.1.1",
"sanity": "^3.2.4",
"sanity-plugin-tags": "^2.0.1",
"styled-components": "^5.3.6",
"suspend-react": "^0.0.9"
},
"devDependencies": {
"@sanity/color": "^2.2.2",
"@sanity/eslint-config-studio": "^2.0.1",
"@storybook/addon-essentials": "^7.0.0-rc.3",
"@storybook/addon-interactions": "^7.0.0-rc.3",
"@storybook/addon-links": "^7.0.0-rc.3",
"@storybook/blocks": "^7.0.0-rc.3",
"@storybook/nextjs": "^7.0.0-rc.3",
"@storybook/react": "^7.0.0-rc.3",
"@storybook/testing-library": "^0.0.14-next.1",
"@svgr/webpack": "^6.5.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.13",
"eslint": "^8.32.0",
"eslint-config-next": "13.1.2",
"eslint-plugin-simple-import-sort": "^8.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-packagejson": "^2.4.0",
"prettier-plugin-tailwindcss": "^0.2.1",
"storybook": "^7.0.0-rc.3",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
}
}